Home
last modified time | relevance | path

Searched refs:LoadOptions (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/env/build/
H A Denv.d.ts2 type LoadOptions = { alias
8 load: (projectRoot: string, options?: LoadOptions) => NodeJS.ProcessEnv;
9 get: (projectRoot: string, options?: LoadOptions) => {
13 _getForce: (projectRoot: string, options?: LoadOptions) => {
18 export declare function getFiles(mode: string | undefined, { silent }?: Pick<LoadOptions, 'silent'>…
H A Denv.js.map1LoadOptions = {\n silent?: boolean;\n force?: boolean;\n};\n\nconst debug = require('debug')('ex…
/expo/packages/@expo/env/src/
H A Denv.ts14 type LoadOptions = { alias
33 options: LoadOptions = {}
107 options: LoadOptions = {}
121 function load(projectRoot: string, options: LoadOptions = {}) {
152 { silent = false }: Pick<LoadOptions, 'silent'> = {}
/expo/packages/@expo/metro-config/build/
H A DExpoMetroConfig.d.ts4 export interface LoadOptions { interface
22 export declare function loadAsync(projectRoot: string, { reporter, ...metroOptions }?: LoadOptions)…
H A DExpoMetroConfig.js.map1LoadOptions {\n config?: string;\n maxWorkers?: number;\n port?: number;\n reporter?: Reporter…
/expo/packages/@expo/cli/src/start/server/metro/
H A DinstantiateMetro.ts2 import type { LoadOptions } from '@expo/metro-config';
55 options: LoadOptions,
/expo/packages/@expo/metro-config/src/
H A DExpoMetroConfig.ts24 export interface LoadOptions { interface
212 { reporter, ...metroOptions }: LoadOptions = {}
/expo/packages/@expo/cli/src/export/
H A Dfork-bundleAsync.ts2 import type { LoadOptions } from '@expo/metro-config';
22 export type MetroDevServerOptions = LoadOptions & {