mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
export interface FontParameters {
|
|
families: string[];
|
|
style: string;
|
|
weight: string;
|
|
}
|
|
export const CLASS_COLLAPSED: string;
|
|
export const CLASS_CONTROL: string;
|
|
export const CLASS_HIDDEN: string;
|
|
export const CLASS_SELECTABLE: string;
|
|
export const CLASS_UNSELECTABLE: string;
|
|
export const CLASS_UNSUPPORTED: string;
|
|
export function getFontParameters(font: string): FontParameters;
|