with-platform.ts
1 import type { WithPlatform } from 'node_modules/@jet-app/app-store/src/api/models/preview-platform';
2
3 export function isWithPlatform(x: unknown): x is WithPlatform {
4 return typeof x === 'object' && x !== null && 'platform' in x;
5 }