Searched refs:supportedPlatforms (Results 1 – 3 of 3) sorted by relevance
6 export function isCurrentPlatformSupported(supportedPlatforms: string[] = []): boolean {7 return supportedPlatforms.length === 0 || supportedPlatforms.includes(Platform.OS);
8 const supportedPlatforms = ['ios', 'android', 'web', 'none']; constant28 if (platform && !supportedPlatforms.includes(platform)) {
85 <input type="hidden" name="supportedPlatforms" value={platforms.join(',')} />