Skip to content

Commit

Permalink
feat(navigation-flow): just provide a formater
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed May 21, 2020
1 parent a8e355b commit 29aef47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/@dataflow/extra/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './users-flow';
export * from './name-validation';
export * from './navigation-flow';
10 changes: 10 additions & 0 deletions src/app/@dataflow/extra/navigation-flow.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { NothingFlow, BareFlow } from '../core';

export interface NavigationFLowOutNode {
remote: string;
path: string;
}

export abstract class NavigationFlow extends NothingFlow<NavigationFLowOutNode> {
// public prerequest$: Observable<CombErr<NavFlowOutNode>>;
}

0 comments on commit 29aef47

Please sign in to comment.