bidasoa-components
Version:
Colección de componentes comunes empleados en proyectos Bidasoa.
12 lines (11 loc) • 421 B
TypeScript
export interface LinkConfiguration {
label: string;
url: {
path: string;
};
links: LinkConfiguration[];
target: '_blank' | '_self' | '_parent' | '_top' | null;
}
export declare function getNextLevelLinks(link: LinkConfiguration): LinkConfiguration[];
export declare function hasNextLevelLinks(link: LinkConfiguration): boolean;
export declare function getUrl(link: LinkConfiguration): string;