1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-11 03:34:35 +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
src/types/TreeNode.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface TreeNode {
name: string
relativePath: string
absolutePath: string
children: Array<TreeNode>
}

View File

@@ -3,3 +3,4 @@ export * from './Execution'
export * from './Request'
export * from './FileTree'
export * from './Session'
export * from './TreeNode'