Skip to content

Commit

Permalink
feat(router): make individual route separators optional in config
Browse files Browse the repository at this point in the history
  • Loading branch information
jwx committed Aug 14, 2019
1 parent 519affe commit 1e8b61d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/router/src/instruction-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ export interface IInstructionResolverOptions {
}

export interface IRouteSeparators {
viewport: string;
sibling: string;
scope: string;
ownsScope: string;
parameters: string;
parametersEnd: string;
parameter: string;
add: string;
clear: string;
action: string;
viewport?: string;
sibling?: string;
scope?: string;
ownsScope?: string;
parameters?: string;
parametersEnd?: string;
parameter?: string;
add?: string;
clear?: string;
action?: string;
}

export class InstructionResolver {
Expand Down

0 comments on commit 1e8b61d

Please sign in to comment.