mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
// Type definitions for typography 0.16
|
|
// Project: https://github.com/KyleAMathews/typography.js
|
|
// Definitions by: Boye <https://github.com/boyeborg>
|
|
// Krzysztof Żuraw <https://github.com/krzysztofzuraw>
|
|
// Dominic Fallows <https://github.com/dominicfallows>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
export interface BaseLine {
|
|
fontSize: string;
|
|
lineHeight: string;
|
|
}
|
|
|
|
export interface VerticalRhythm {
|
|
rhythm: (value: number) => string;
|
|
scale: (value: number) => BaseLine;
|
|
adjustFontSizeTo: (value?: number | string) => object;
|
|
linesForFontSize: (fontSize: number) => number;
|
|
establishBaseline: () => BaseLine;
|
|
}
|
|
|
|
export interface GoogleFont {
|
|
name: string;
|
|
styles: string[];
|
|
}
|
|
|
|
export interface TypographyOptions {
|
|
baseFontSize?: string;
|
|
baseLineHeight?: number;
|
|
scaleRatio?: number;
|
|
googleFonts?: GoogleFont[];
|
|
headerFontFamily?: string[];
|
|
headerLineHeight?: number;
|
|
bodyFontFamily?: string[];
|
|
headerColor?: string;
|
|
bodyColor?: string;
|
|
headerWeight?: number | string;
|
|
bodyWeight?: number | string;
|
|
boldWeight?: number | string;
|
|
blockMarginBottom?: number;
|
|
includeNormalize?: boolean;
|
|
overrideStyles?: (
|
|
VerticalRhythm: VerticalRhythm,
|
|
options: TypographyOptions,
|
|
styles: any
|
|
) => object;
|
|
overrideThemeStyles?: (
|
|
VerticalRhythm: VerticalRhythm,
|
|
options: TypographyOptions,
|
|
styles: any
|
|
) => object;
|
|
plugins?: any[];
|
|
}
|
|
|
|
declare class Typography {
|
|
constructor(opts: TypographyOptions);
|
|
options: TypographyOptions;
|
|
createStyles(): string;
|
|
toJSON(): object;
|
|
injectStyles(): void;
|
|
rhythm: VerticalRhythm["rhythm"];
|
|
scale: VerticalRhythm["scale"];
|
|
adjustFontSizeTo: VerticalRhythm["adjustFontSizeTo"];
|
|
linesForFontSize: VerticalRhythm["linesForFontSize"];
|
|
establishBaseline: VerticalRhythm["establishBaseline"];
|
|
}
|
|
|
|
export default Typography;
|