diff options
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/api/intents/app-event-page-intent.js')
| -rw-r--r-- | node_modules/@jet-app/app-store/tmp/src/api/intents/app-event-page-intent.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/node_modules/@jet-app/app-store/tmp/src/api/intents/app-event-page-intent.js b/node_modules/@jet-app/app-store/tmp/src/api/intents/app-event-page-intent.js new file mode 100644 index 0000000..1913f2a --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/intents/app-event-page-intent.js @@ -0,0 +1,14 @@ +import { normalizePreviewPlaform } from "../models/preview-platform"; +const APP_EVENT_PAGE_INTENT_KIND = "AppEventPageIntent"; +export function makeAppEventPageIntent(opts) { + const { platform, ...rest } = opts; + return { + ...rest, + $kind: APP_EVENT_PAGE_INTENT_KIND, + platform: normalizePreviewPlaform(platform), + }; +} +export function isAppEventPageIntent(intent) { + return (intent === null || intent === void 0 ? void 0 : intent.$kind) === APP_EVENT_PAGE_INTENT_KIND; +} +//# sourceMappingURL=app-event-page-intent.js.map
\ No newline at end of file |
