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