line_push/node_modules/@line/liff/dist/lib/client/scanCode.d.ts
2022-07-17 13:16:16 +08:00

10 lines
263 B
TypeScript

import { LiffCore } from '../liff';
/**
* open scan qr code appview
*/
export interface ScanCodeResult {
value: string | null;
}
export declare type ScanCode = () => Promise<ScanCodeResult>;
export default function createScanCode(liff: LiffCore): ScanCode;