Home
last modified time | relevance | path

Searched refs:PlatformName (Results 1 – 7 of 7) sorted by relevance

/expo/docs/ui/components/Tag/
H A Dhelpers.ts2 import { PlatformName } from '~/types/common';
4 export const getPlatformName = (text: string): PlatformName => {
21 export const formatName = (name: PlatformName) => {
H A DPlatformTags.tsx3 import { PlatformName } from '~/types/common';
8 platforms?: PlatformName[];
H A DPlatformTag.tsx7 import { PlatformName } from '~/types/common';
11 platform: PlatformName;
/expo/tools/src/commands/
H A DNativeUnitTests.ts7 type PlatformName = 'android' | 'ios' | 'both'; alias
15 platform?: PlatformName;
21 const result = await inquirer.prompt<{ platform: PlatformName }>([
/expo/docs/components/plugins/
H A DAPIBox.tsx8 import { PlatformName } from '~/types/common';
14 platforms?: PlatformName[];
H A DPlatformIcon.tsx4 import { PlatformName } from '~/types/common';
7 platform?: PlatformName;
/expo/docs/types/
H A Dcommon.ts50 export type PlatformName = 'ios' | 'android' | 'web' | 'expo' | string; alias