
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.
8 lines
140 B
TypeScript
8 lines
140 B
TypeScript
export interface NavigationNode {
|
|
url?: string;
|
|
title?: string;
|
|
tooltip?: string;
|
|
target?: string;
|
|
children?: NavigationNode[];
|
|
}
|