12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
interface TextAction {
|
|
url: string;
|
|
title: string;
|
|
cssClass?: string;
|
|
}
|
|
export interface MiscInfo {
|
|
text?: string | number;
|
|
type?: string;
|
|
textAction?: TextAction;
|
|
cssClass?: string;
|
|
}
|