hyper/builder/typings/constants/index.d.ts
2025-08-10 02:06:07 -04:00

7 lines
121 B
TypeScript

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