hyper/typings/constants/index.d.ts
2023-07-25 16:49:24 +05:30

7 lines
121 B
TypeScript

export const INIT = 'INIT';
export interface InitAction {
type: typeof INIT;
}
export type InitActions = InitAction;