projects/ngx-linkifyjs/src/lib/interfaces/ngx-linkifyjs.interface.ts
Properties |
href |
href:
|
Type : string
|
type |
type:
|
Type : string
|
value |
value:
|
Type : string
|
export interface Link {
type: string;
value: string;
href: string;
}
export interface NgxLinkifyjsConfig {
enableHash?: boolean;
enableMention?: boolean;
}
export interface NgxLinkifyOptions {
attributes?: any;
className?: string;
defaultProtocol?: string;
events?: any;
ignoreTags?: Array<any>;
nl2br?: boolean;
tagName?: string;
target?: { url: string };
validate?: boolean;
format?(value: any, type: any): any;
formatHref?(href: any, type: any): any;
}