angular/aio/src/app/navigation/navigation-node.ts
Peter Bacon Darwin 3529813ca0 fix(aio): move interfaces into their own files to workaround compile weirdness
For some reason the tree-shaker is not picking up these interfaces
(perhaps TS is not passing it through) when they are in the same file
as their related services. This results in a distracting warning message.
2017-03-06 22:27:32 -08:00

8 lines
140 B
TypeScript

export interface NavigationNode {
url?: string;
title?: string;
tooltip?: string;
target?: string;
children?: NavigationNode[];
}