refactoring RouteBuilderFactory into service
This commit is contained in:
parent
edd7314624
commit
2a59014f0b
7 changed files with 56 additions and 6 deletions
|
@ -0,0 +1,6 @@
|
|||
export abstract class RouteBuilder {
|
||||
|
||||
public abstract otherwise(options: any): void;
|
||||
|
||||
public abstract route(path: string, pagename: string): RouteBuilder;
|
||||
}
|
Reference in a new issue