From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- .../app-store/tmp/src/api/intents/eula-page-intent.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 node_modules/@jet-app/app-store/tmp/src/api/intents/eula-page-intent.js (limited to 'node_modules/@jet-app/app-store/tmp/src/api/intents/eula-page-intent.js') diff --git a/node_modules/@jet-app/app-store/tmp/src/api/intents/eula-page-intent.js b/node_modules/@jet-app/app-store/tmp/src/api/intents/eula-page-intent.js new file mode 100644 index 0000000..f040ff9 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/intents/eula-page-intent.js @@ -0,0 +1,19 @@ +const EULA_PAGE_INTENT_KIND = "EulaPageIntent"; +/** + * Determines if {@linkcode intent} is a {@linkcode EulaPageIntent} + */ +export function isEulaPageIntent(intent) { + return intent.$kind === EULA_PAGE_INTENT_KIND; +} +/** + * Creates a {@linkcode EulaPageIntent} + */ +export function makeEulaPageIntent({ resourceId, resourceType, ...rest }) { + return { + ...rest, + resourceId, + resourceType, + $kind: EULA_PAGE_INTENT_KIND, + }; +} +//# sourceMappingURL=eula-page-intent.js.map \ No newline at end of file -- cgit v1.2.3