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