UNPKG

pdfmake-wrapper

Version:

Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.

10 lines 356 B
import { IStyleDefinition } from '..'; /** * Interface that defines a toc item */ export interface ITocItem extends IStyleDefinition { readonly tocItem: boolean; readonly tocStyle?: IStyleDefinition; readonly tocMargin?: number | [number, number] | [number, number, number, number]; } //# sourceMappingURL=toc-item.interface.d.ts.map