export interface IconDefinition { name: string; searchTerms: string[]; category: string; roundPath: string; sharpPath: string; roundId: string; sharpId: string; } export interface ImageDefinition extends IconDefinition { roundData: string; sharpData: string; } export interface FontDefinition extends IconDefinition { roundUnicode: string; sharpUnicode: string; } export interface GenerateFontResult { dartDefinitions: string[]; dartRoundDefinitions: string[]; dartSharpDefinitions: string[]; dartRoundLookup: string[]; dartSharpLookup: string[]; iconNames: string[]; } export type IconManifest = Map; export type ImageManifest = Map; export type FontManifest = Map; export type FontType = "round" | "sharp"; //# sourceMappingURL=types.d.ts.map