src/highlight-tag.interface.ts
Properties |
cssClass |
cssClass:
|
Type : string
|
Defined in src/highlight-tag.interface.ts:6
|
data |
data:
|
Type : any
|
Defined in src/highlight-tag.interface.ts:7
|
indices |
indices:
|
Type : literal type
|
Defined in src/highlight-tag.interface.ts:2
|
export interface HighlightTag {
indices: {
start: number;
end: number;
};
cssClass?: string;
data?: any;
}