1
0
Fork 0
toolkit/packages/glob/src/internal-search-state.ts

10 lines
172 B
TypeScript
Raw Normal View History

2019-12-31 15:16:18 +00:00
export class SearchState {
readonly path: string
readonly level: number
constructor(path: string, level: number) {
this.path = path
this.level = level
}
}