mirror of
https://github.com/iconify/iconify.git
synced 2025-02-14 09:30:21 +00:00
Replace typeof with full type in SVG framework exports
This commit is contained in:
parent
4bdbe0b98a
commit
85ae70961b
@ -186,12 +186,15 @@ export interface IconifyGlobal {
|
||||
/**
|
||||
* Get icon data
|
||||
*/
|
||||
renderIcon: typeof buildIcon;
|
||||
renderIcon: (
|
||||
name: string,
|
||||
customisations: IconifyIconCustomisations
|
||||
) => IconifyIconBuildResult | null;
|
||||
|
||||
/**
|
||||
* Replace IDs in icon body, should be used when parsing buildIcon() result
|
||||
*/
|
||||
replaceIDs: typeof replaceIDs;
|
||||
replaceIDs: (body: string, prefix?: string | (() => string)) => string;
|
||||
|
||||
/* Scanner */
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user