UNPKG

@jspreadsheet/print

Version:
16 lines (11 loc) 400 B
/** * Official Type definitions for JSS comments * https://jspreadsheet.com/products/importer * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import type JSpreadsheetCore from './jspreadsheet'; declare function print(worksheet: JSpreadsheetCore.Worksheet): void; declare namespace print { function setFont(font: string) : void; } export default print;