6 lines
No EOL
160 B
TypeScript
6 lines
No EOL
160 B
TypeScript
export abstract class RouteBuilder {
|
|
|
|
public abstract otherwise(options: any): void;
|
|
|
|
public abstract route(path: string, pagename: string): RouteBuilder;
|
|
} |