Skip to content

Commit e366a58

Browse files
committed
chore: remove useless code
1 parent 6a11a84 commit e366a58

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/index.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
1515

1616
type GetProps<C> = C extends ComponentType<infer P> ? P : never;
1717

18-
export interface ProviderProps<State> {
19-
initialState?: State
20-
children: ReactNode
21-
}
22-
2318
export type Dispatch<State> = (
2419
state: State | ((prevState: State) => State)
2520
) => void;

0 commit comments

Comments
 (0)