this repo has no description
at main 5 lines 235 B view raw
1import type { WithPlatform } from 'node_modules/@jet-app/app-store/src/api/models/preview-platform'; 2 3export function isWithPlatform(x: unknown): x is WithPlatform { 4 return typeof x === 'object' && x !== null && 'platform' in x; 5}