Merge branch 'nice_dev' into develop
This commit is contained in:
commit
531b5a33db
4 changed files with 143 additions and 39 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue