Home
last modified time | relevance | path

Searched refs:hostType (Results 1 – 12 of 12) sorted by relevance

/expo/packages/@expo/cli/src/start/server/__tests__/
H A DUrlCreator-test.ts27 createDefaultCreator().constructLoadingUrl({ hostType: 'tunnel' }, 'ios')
62 createDefaultCreator().constructDevClientUrl({ scheme: 'bacon', hostType: 'tunnel' })
67 createDefaultCreator().constructDevClientUrl({ scheme: 'bacon', hostType: 'localhost' })
96 expect(createDefaultCreator().constructUrl({ hostType: 'localhost' })).toMatchInlineSnapshot(
101 expect(createDefaultCreator().constructUrl({ hostType: 'lan' })).toMatchInlineSnapshot(
106 expect(createDefaultCreator().constructUrl({ hostType: 'tunnel' })).toMatchInlineSnapshot(
124 hostType: 'tunnel',
146 hostType: 'tunnel',
H A DBundlerDevServer-test.ts132 hostType: 'tunnel',
169 hostType: 'tunnel',
357 await devServer.startAsync({ location: { hostType: 'tunnel' } });
/expo/packages/@expo/cli/src/start/server/
H A DBundlerDevServer.ts207 options.location.hostType === 'tunnel' &&
246 : this.getDevServerUrl({ hostType: 'localhost' }),
357 public getDevServerUrl(options: { hostType?: 'localhost' } = {}): string | null {
363 if (options.hostType === 'localhost') {
391 const serverUrl = this.getDevServerUrl({ hostType: 'localhost' });
473 getDevServerUrl: this.getDevServerUrl.bind(this, { hostType: 'localhost' }),
H A DUrlCreator.ts13 hostType?: 'localhost' | 'lan' | 'tunnel'; property
104 if (options.hostType === 'tunnel') {
110 } else if (options.hostType === 'localhost' && !options.hostname) {
/expo/packages/expo/build/environment/
H A DExpoGo.d.ts12 hostType?: string;
H A DExpoGo.js.map1 …ackagerOpts?: ExpoGoPackagerOpts;\n};\n\ntype ExpoGoPackagerOpts = {\n hostType?: string;\n dev?…
/expo/packages/expo/src/environment/
H A DExpoGo.ts20 hostType?: string;
/expo/packages/expo-manifests/src/
H A DManifests.ts50 hostType?: string;
/expo/packages/expo-manifests/build/
H A DManifests.d.ts39 hostType?: string;
H A DManifests.js.map1 …agerOpts;\n};\n\n// @docsMissing\nexport type ExpoGoPackagerOpts = {\n hostType?: string;\n dev?…
/expo/packages/@expo/cli/src/start/interface/
H A DinteractiveActions.ts73 const webUrl = webDevServer?.getDevServerUrl({ hostType: 'localhost' });
/expo/packages/@expo/cli/src/start/
H A DstartAsync.ts35 hostType: options.host,