line_push/node_modules/@line/liff/dist/lib/client/scanCode.d.ts
2022-07-21 03:28:35 +00: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;