ปรัย UI โครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-31 10:34:03 +07:00
parent 533ed31bc8
commit 33f887f792
4 changed files with 143 additions and 39 deletions

View file

@ -5,7 +5,7 @@ interface DataActive {
draftName: string;
}
interface nodes {
interface OrgTree {
orgTreeId: string;
orgRootId: string;
orgLevel: number;
@ -23,4 +23,12 @@ interface nodes {
children: OrgTree[];
}
export type { DataActive, OrgTree };
interface OrgRevision {
orgRevisionCreatedAt: string | null;
orgRevisionId: string;
orgRevisionIsCurrent: boolean;
orgRevisionIsDraft: boolean;
orgRevisionName: string;
}
export type { DataActive, OrgTree, OrgRevision };