Files
tsclass/ts/website/link.ts

8 lines
152 B
TypeScript

export interface ILink {
url: string;
text?: string;
description?: string;
icon?: string;
target?: '_blank' | '_self' | '_parent' | '_top';
}