(
path: string,
options?: PathOptions
)
| 102 | |
| 103 | export class Path<T extends Record<string, any> = Record<string, any>> { |
| 104 | public static createPath<T extends Record<string, any> = Record<string, any>>( |
| 105 | path: string, |
| 106 | options?: PathOptions |
| 107 | ) { |
| 108 | return new Path<T>(path, options) |
| 109 | } |
| 110 | |
| 111 | public path: string |
| 112 | public tokens: Token[] |