create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
10 lines (9 loc) • 382 B
TypeScript
import { UnloadFontOptions } from './Font';
import { FontResource } from './Font.types';
declare const _default: {
readonly name: string;
unloadAllAsync(): Promise<void>;
unloadAsync(fontFamilyName: string, options?: UnloadFontOptions | undefined): Promise<void>;
loadAsync(fontFamilyName: string, resource: FontResource): Promise<void>;
};
export default _default;