UNPKG

@shridey/intelligentable

Version:

Intelligentable is a highly customizable, fully-types, performant, and feature-rich React component library built on top of handpicked industry-level production-grade UI Components for modern web applications.

17 lines (16 loc) 694 B
/** * Font Options for Table PDF Export. * * @property {string} [fontUrl] - Local Font URL (eg. "../assets/fonts/NotoSans-Regular.ttf"). * @property {string} [fontFileName] - Name of the Font File with extension (eg. "NotoSans-Regular.ttf"). * @property {string} [fontName] - Name of the Font (eg. "NotoSans"). * @property {string[]} [fontStyles] - Font styles (eg. ["normal"]). * @property {string} [fallbackFont] - Alternative font if the mentioned font fails to render (eg. "helvetica"). */ export type IntelligentTableExportButtonPDFFontOptionsType = { fontUrl?: string; fontFileName?: string; fontName?: string; fontStyles?: string[]; fallbackFont?: string; };