UNPKG

svgicons2svgfont

Version:

Read a set of SVG icons and output a SVG font

13 lines (12 loc) 418 B
export interface MetadataServiceOptions { prependUnicode: boolean; startUnicode: number; } export interface 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 };