mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* [FIX] make amcharts definitions work in strict mode * [FIX] travis checks header * clean some linting issues, export namespace, add version and provide small test * [FIX] linting * [MOD] split into several files for easier maintenance access * [ADD] couple of tests
28 lines
466 B
TypeScript
28 lines
466 B
TypeScript
export default 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;
|
|
}
|