UNPKG

svgicons2svgfont

Version:

Read a set of SVG icons and output a SVG font

13 lines (12 loc) 414 B
export type MetadataServiceOptions = { prependUnicode: boolean; startUnicode: number; }; export type FileMetadata = { path: string; name: string; unicode: string[] | string; renamed: boolean; }; declare function getMetadataService(options?: Partial<MetadataServiceOptions>): (file: string, cb: (error: Error | null, metadata?: FileMetadata) => void) => void; export { getMetadataService };