We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As @tanker/verification-ui (the only package depending on this project) is being migrated to typescript, exposing types would be a plus.
@tanker/verification-ui
the following declaration should be enough:
declare module 'dumb-reducer' { export type Reducer = (state: Record<string, any>, payload: Record<string, any>) => Record<string, any>; export type SubReducers = Record<string, Reducer>; export function makeDumbReducer(prefix: string, initialState: Record<string, any> = {}, subReducers: SubReducers = {}): Reducer; export function prefixActions(prefix: string, actions: Record<string, any>): Record<string, any>; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As
@tanker/verification-ui
(the only package depending on this project) is being migrated to typescript, exposing types would be a plus.the following declaration should be enough:
The text was updated successfully, but these errors were encountered: