FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
types
/
components
/
ui
/
icon
Edit File: library.d.ts
import { IconLibrary } from '../../../types'; export type IconLibraryResolver = (name: string) => string; export type IconLibraryMutator = (svg: SVGElement) => void; export declare function watchIcon(icon: any): void; export declare function unwatchIcon(icon: any): void; export declare function getIconLibrary(name?: string): IconLibrary; export declare function registerIconLibrary(name: string, options: { resolver: IconLibraryResolver; mutator?: IconLibraryMutator; }): void; export declare function unregisterIconLibrary(name: string): void;
Save
Back