mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 12:09:12 +08:00
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
|
|
}
|
|
}
|