mirror of https://github.com/actions/toolkit
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
|
export class SearchState {
|
||
|
readonly path: string
|
||
|
readonly level: number
|
||
|
|
||
|
constructor(path: string, level: number) {
|
||
|
this.path = path
|
||
|
this.level = level
|
||
|
}
|
||
|
}
|