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