fantasia-archive/src/store/module-example/state.ts

12 lines
159 B
TypeScript
Raw Normal View History

2021-07-10 04:38:42 +12:00
export interface ExampleStateInterface {
prop: boolean;
}
function state (): ExampleStateInterface {
return {
prop: false
}
}
export default state