(path: string)
| 344 | export class RouterParser { |
| 345 | // parse giving path (starts with '/', may includes search and hash) to Router state, |
| 346 | parsePath(path: string): Promisable<RouterState> { |
| 347 | return { repo: '', ref: 'HEAD', pageType: PageType.Tree, filePath: '' }; |
| 348 | } |
| 349 | |
| 350 | // build the tree page path |
| 351 | buildTreePath(repo: string, ref?: string, filePath?: string): Promisable<string> { |