@terra-js/terra-kit
Version:
SDK for mobile bridge to offer unified method signatures for Android/iOS.
19 lines (18 loc) • 462 B
TypeScript
import { SourceGetPhotoType } from './CommonKitModule';
export interface PrintRequest {
base64String: string;
}
export interface PrintResult {
isSuccess: boolean;
message?: string;
}
export interface PrintConfig {
clientBillAddress?: string;
clientBillLogo?: string;
clientBillName?: string;
clientBillPhone?: string;
}
export interface GetPhotoOptions {
source: SourceGetPhotoType;
}
export declare type GetPhotoResult = string;