1
0
mirror of https://github.com/sasjs/server.git synced 2026-04-21 04:41:31 +00:00

feat: add new type TreeNode

This commit is contained in:
2021-10-18 19:45:00 +00:00
parent a506bc9dd9
commit bc3cb7bb20
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export interface TreeNode {
name: string
relativePath: string
absolutePath: string
children: Array<TreeNode>
}
+1
View File
@@ -3,3 +3,4 @@ export * from './Execution'
export * from './Request'
export * from './FileTree'
export * from './Session'
export * from './TreeNode'