This commit is contained in:
rca 2024-07-21 22:31:19 +09:00
parent 121046c0c0
commit 1946f4ede9

View File

@ -1,10 +1,12 @@
export interface ExampleStateInterface {
prop: boolean;
import { TaskBaseItem } from "src/models/task";
export interface CacheStateInterface {
tasks: TaskBaseItem[];
}
function state(): ExampleStateInterface {
function state(): CacheStateInterface {
return {
prop: false,
tasks: [],
};
}