This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
zeropod/src/display/interface.ts

5 lines
134 B
TypeScript

export interface DisplayPrinter {
displayContent(content: string, wrap: boolean): Promise<void>;
clear(turnOff: boolean): void;
}