accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
21 lines (19 loc) • 462 B
text/typescript
import {
FontRanges,
} from './FontRanges';
import {
FontStyles,
} from './FontStyles';
import {
IFontHelperVariant,
} from './IFontHelperVariant';
export interface IFontHelper {
readonly category: string;
readonly defSubset: FontRanges;
readonly defVariant: FontStyles;
readonly family: string;
readonly fontWeight: number;
readonly id: string;
readonly subsets: readonly FontRanges[];
readonly variants: readonly IFontHelperVariant[];
}