12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
type FontStyle = {
|
|
fontFamily: string;
|
|
fontFile: any;
|
|
glyphMap: any;
|
|
fontStyle: any;
|
|
};
|
|
type FontStyles = {
|
|
[key: string]: FontStyle;
|
|
};
|
|
export default function createMultiStyleIconSet(styles: FontStyles, optionsInput?: {}): any;
|
|
export {};
|
|
//# sourceMappingURL=createMultiStyleIconSet.d.ts.map
|