Newer
Older
NocodeToolOnRDL / src / types / project.ts
@Sakoda2269 Sakoda2269 11 days ago 255 bytes 不要な型を削除
import type { Screen } from "./screen";
import type { Table } from "./table";

export interface Project {
    id: string;
    title: string;
    detail: string;
    createdTime: string;
    updatedTime: string;
    screens: Screen[],
    tables: Table[]
}