UNPKG

@appsemble/lang-sdk

Version:

Language SDK for Appsemble

20 lines (19 loc) 527 B
export const CustomFontDefinition = { type: 'object', description: 'A custom font definition.', additionalProperties: false, required: ['source', 'family'], properties: { source: { description: 'Use a custom font.', enum: ['custom'], }, family: { type: 'string', description: `The font family to use in the app. Make sure the font is available using custom CSS. `, }, }, }; //# sourceMappingURL=CustomFontDefinition.js.map