UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

11 lines (10 loc) 365 B
import { FileChild } from '../file-child'; import { IParagraphOptions } from '../paragraph'; import { VmlShapeStyle } from './shape/shape'; type ITextboxOptions = Omit<IParagraphOptions, "style"> & { readonly style?: VmlShapeStyle; }; export declare class Textbox extends FileChild { constructor({ style, children, ...rest }: ITextboxOptions); } export {};