UNPKG

kasirpop-star-io10

Version:

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

12 lines (11 loc) 608 B
import { NativeObject } from '../NativeObject'; export declare abstract class BaseStarXpandCommandBuilder extends NativeObject { protected _actions: Array<() => Promise<void>>; protected _children: Array<BaseStarXpandCommandBuilder>; protected _initAllNativeObjects(): Promise<void>; protected _disposeAllNativeObjects(): Promise<void>; protected _addChild(builder: BaseStarXpandCommandBuilder): void; protected _removeChild(builder: BaseStarXpandCommandBuilder): void; protected _addAction(action: () => Promise<void>): void; protected _executeAllActions(): Promise<void>; }