UNPKG

kasirpop-star-io10

Version:

kasirpop-star-io10 is a library for supporting application development for Star Micronics devices.

18 lines (17 loc) 1.16 kB
import { BaseStarXpandCommandBuilder } from './BaseStarXpandCommandBuilder'; import { StarXpandCommand } from '../../index'; export declare class DocumentBuilder extends BaseStarXpandCommandBuilder { settingTopMargin(height: number): DocumentBuilder; settingBlackMark(parameter: StarXpandCommand.Printer.BlackMarkParameter): DocumentBuilder; settingLabel(parameter: StarXpandCommand.Printer.LabelParameter): DocumentBuilder; settingHoldPrint(parameter: StarXpandCommand.Printer.HoldPrintParameter): DocumentBuilder; settingPrintableArea(width: number): DocumentBuilder; addPrinter(builder: StarXpandCommand.PrinterBuilder): DocumentBuilder; addDrawer(builder: StarXpandCommand.DrawerBuilder): DocumentBuilder; addBuzzer(builder: StarXpandCommand.BuzzerBuilder): DocumentBuilder; addMelodySpeaker(builder: StarXpandCommand.MelodySpeakerBuilder): DocumentBuilder; addDisplay(builder: StarXpandCommand.DisplayBuilder): DocumentBuilder; addRaw(content: Array<number>): DocumentBuilder; protected _initNativeObjectImpl(): Promise<string>; protected _disposeNativeObjectImpl(nativeObject: string): Promise<void>; }