@linvix-sistemas/react-native-tectoysunmisdk
Version:
Pacote de comunicação com o hardware de Sunmi/Tectoy Automação, para efetuar impressão, comunicação com LCD entre outros.
8 lines (7 loc) • 421 B
TypeScript
import type { TectoyLCDFuncaoType, TectoyLCDMultiTextoType } from './types/tectoysunmi-types';
declare const NativeModuleTectToySunmiLCDSDK: {
ControlarLCD: (funcao: TectoyLCDFuncaoType) => Promise<any>;
EnviarTexto: (texto?: string, tamanho_fonte?: number, preencher?: boolean) => Promise<any>;
EnviarTextos: (data: TectoyLCDMultiTextoType) => Promise<any>;
};
export default NativeModuleTectToySunmiLCDSDK;