Files

10 lines
172 B
TypeScript
Raw Permalink Normal View History

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