fantasticon
Version:
Icon font generation tool
8 lines (7 loc) • 349 B
TypeScript
/// <reference types="node" />
import { FontAssetType, OtherAssetType } from '../types/misc';
import { FontGeneratorOptions } from '../types/generator';
export type GeneratedAssets = {
[key in FontAssetType | OtherAssetType]?: string | Buffer;
};
export declare const generateAssets: (options: FontGeneratorOptions) => Promise<GeneratedAssets>;