fantasia-archive/src/store/module-example/state.ts
2021-07-09 18:38:42 +02:00

12 lines
159 B
TypeScript

export interface ExampleStateInterface {
prop: boolean;
}
function state (): ExampleStateInterface {
return {
prop: false
}
}
export default state