mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-26 11:12:19 +08:00
Added title class
This commit is contained in:
Vendored
+22
-1
@@ -2423,4 +2423,25 @@ Your function should return string.*/
|
||||
/** Removes event listener from chart object. */
|
||||
removeListener(chart: AmChart, type: string, handler: any);
|
||||
}
|
||||
}
|
||||
|
||||
class Title {
|
||||
/** @default 1 */
|
||||
alpha: number;
|
||||
/** Specifies if the tile is bold or not.
|
||||
@default false*/
|
||||
bold: boolean;
|
||||
/** Text color of a title. */
|
||||
color: string;
|
||||
/** Unique id of a Title. You don't need to set it, unless you want to. */
|
||||
id: string;
|
||||
/** Text size */
|
||||
size: number;
|
||||
/** Text of a label */
|
||||
text: string;
|
||||
}
|
||||
class ExportSettings {
|
||||
enabled: boolean;
|
||||
libs: Object;
|
||||
menu: Object;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user