hyper/lib/constants/index.ts
2019-12-29 15:55:53 +01:00

7 lines
121 B
TypeScript

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