@react-native-vector-icons/common
Version:
Customizable Icons for React Native with support for image source and full styling.
11 lines (8 loc) • 315 B
text/typescript
// the result of calling require('path')
type ModuleId = number;
type LocalFileSystemUri = string;
export type FontSource = ModuleId | LocalFileSystemUri;
export type DynamicLoader = {
loadFontAsync: (fontFamily: string, fontSource: FontSource) => Promise<void>;
isLoaded: (fontFamily: string) => boolean;
};