mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
export const INIT = 'INIT';
|
|
|
|
export interface InitAction {
|
|
type: typeof INIT;
|
|
}
|
|
|
|
export type InitActions = InitAction;
|