This commit is contained in:
eric sciple
2019-12-31 10:16:18 -05:00
committed by GitHub
parent a94e2440cb
commit a11539e1db
16 changed files with 3065 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
export class SearchState {
readonly path: string
readonly level: number
constructor(path: string, level: number) {
this.path = path
this.level = level
}
}