1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-10 16:00:05 +00:00

chore: add custom tree view component

This commit is contained in:
2022-07-18 22:32:10 +05:00
parent 30d7a65358
commit 849b2dd468
3 changed files with 156 additions and 0 deletions

View File

@@ -30,3 +30,9 @@ export interface RegisterPermissionPayload {
principalType: string
principalId: number
}
export interface TreeNode {
name: string
relativePath: string
children: Array<TreeNode>
}