react-native-star-io10
Version:
react-native-star-io10 is a library for supporting application development for Star Micronics devices.
9 lines (8 loc) • 428 B
TypeScript
export declare abstract class BaseStarXpandCommandBuilder {
protected _actions: Array<() => Promise<void>>;
protected _children: Array<BaseStarXpandCommandBuilder>;
protected _addChild(builder: BaseStarXpandCommandBuilder): void;
protected _removeChild(builder: BaseStarXpandCommandBuilder): void;
protected _addAction(action: () => Promise<void>): void;
protected _executeAllActions(): Promise<void>;
}