UNPKG

phosphor-svelte

Version:

A clean and friendly icon family for Svelte

19 lines (15 loc) 408 B
export type Preprocessor = (options: { content: string attributes: Record<string, string | boolean> markup: string filename?: string }) => Processed | void | Promise<Processed | undefined> export interface Processed { code: string map?: string | object } export interface PreprocessorGroup { name: string script?: Preprocessor } export function phosphorSvelteOptimize(): PreprocessorGroup