zigap-utils 3.1.0-preview.6 → 3.1.0-preview.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hooks/useDeeplinkResume.d.ts +2 -1
- package/dist/index.es.js +788 -788
- package/package.json +1 -1
|
@@ -14,7 +14,8 @@ interface UseDeeplinkResumeArgs {
|
|
|
14
14
|
nonce: string;
|
|
15
15
|
type: DeeplinkEnvelopeType | string;
|
|
16
16
|
payload?: any;
|
|
17
|
-
|
|
17
|
+
/** 결과를 실제로 전달(또는 TIMEOUT 종결)했으면 true. 유효하지 않은 메시지면 false 를 반환해 스냅샷을 보존한다. */
|
|
18
|
+
onResult: (result: ResumeResult) => boolean;
|
|
18
19
|
/** resume 액션 시점(화면 복귀 후 서버 보관분 pull 직전)에 호출. optional. */
|
|
19
20
|
onResume?: () => void;
|
|
20
21
|
timeoutMs?: number;
|