UNPKG

@lad-tech/mobydick-core

Version:

React Native components library focused on usability, accessibility and developer experience

13 lines (10 loc) 227 B
interface IConfig { allowFontScaling: boolean; } let config: IConfig = { allowFontScaling: true, }; export const setConfig = (newConfig: typeof config) => { config = newConfig; }; export const getConfig = () => config;