| 29 | }; |
| 30 | |
| 31 | export interface Spec extends TurboModule { |
| 32 | // biome-ignore lint/complexity/noBannedTypes: using Object to be compatible with old architecture |
| 33 | getImageForFont(glyph: string, options: Object): Promise<ImageResult>; |
| 34 | |
| 35 | // biome-ignore lint/complexity/noBannedTypes: using Object to be compatible with old architecture |
| 36 | getImageForFontSync(glyph: string, options: Object): ImageResult; |
| 37 | } |
| 38 | |
| 39 | export default TurboModuleRegistry.getEnforcing<Spec>('VectorIcons'); |
no outgoing calls
no test coverage detected
searching dependent graphs…