Files
Fluxup_PAP/node_modules/expo-font/plugin/build/withFonts.d.ts
2026-03-10 16:18:05 +00:00

22 lines
495 B
TypeScript

import { type ConfigPlugin } from 'expo/config-plugins';
export type FontObject = {
fontFamily: string;
fontDefinitions: {
path: string;
weight: number;
style?: 'normal' | 'italic' | undefined;
}[];
};
export type Font = string | FontObject;
export type FontProps = {
fonts?: string[];
android?: {
fonts?: Font[];
};
ios?: {
fonts?: string[];
};
};
declare const _default: ConfigPlugin<FontProps>;
export default _default;