Home
last modified time | relevance | path

Searched refs:CreateURLOptions (Results 1 – 15 of 15) sorted by relevance

/expo/packages/@expo/cli/src/start/server/
H A DUrlCreator.ts9 export interface CreateURLOptions { interface
25 public defaults: CreateURLOptions | undefined,
39 public constructLoadingUrl(options: CreateURLOptions, platform: string | null): string {
50 public constructDevClientUrl(options?: CreateURLOptions): null | string {
72 public constructUrl(options?: Partial<CreateURLOptions> | null): string {
83 private getTunnelUrlComponents(options: Pick<CreateURLOptions, 'scheme'>): UrlComponents | null {
96 private getUrlComponents(options: CreateURLOptions): UrlComponents {
123 options: Pick<CreateURLOptions, 'scheme'>,
143 function getDefaultHostname(options: Pick<CreateURLOptions, 'hostname'>) {
H A DBundlerDevServer.ts6 import { CreateURLOptions, UrlCreator } from './UrlCreator';
76 location: CreateURLOptions;
350 public getNativeRuntimeUrl(opts: Partial<CreateURLOptions> = {}) {
/expo/packages/expo-linking/build/
H A DcreateURL.web.d.ts1 import { CreateURLOptions, ParsedURL } from './Linking.types';
2 export declare function createURL(path: string, { queryParams }?: CreateURLOptions): string;
H A DcreateURL.d.ts1 import { CreateURLOptions, ParsedURL } from './Linking.types';
21 …ction createURL(path: string, { scheme, queryParams, isTripleSlashed }?: CreateURLOptions): string;
H A DLinking.types.d.ts15 export type CreateURLOptions = { alias
H A DLinking.types.js.map1 …queryParams: QueryParams | null;\n};\n\n// @needsAudit\nexport type CreateURLOptions = {\n /**\n …
H A DcreateURL.web.js.map1 …import { CreateURLOptions, ParsedURL } from './Linking.types';\n\nexport function createURL(path: …
H A DcreateURL.js.map1CreateURLOptions, ParsedURL } from './Linking.types';\nimport { hasCustomScheme, resolveScheme } f…
/expo/packages/expo-linking/src/
H A DcreateURL.web.ts1 import { CreateURLOptions, ParsedURL } from './Linking.types';
3 export function createURL(path: string, { queryParams = {} }: CreateURLOptions = {}): string {
H A DLinking.types.ts21 export type CreateURLOptions = { alias
H A DcreateURL.ts5 import { CreateURLOptions, ParsedURL } from './Linking.types';
78 { scheme, queryParams = {}, isTripleSlashed = false }: CreateURLOptions = {}
/expo/packages/expo-auth-session/build/
H A DSessionUrlProvider.d.ts5 …getDefaultReturnUrl(urlPath?: string, options?: Omit<Linking.CreateURLOptions, 'queryParams'>): st…
H A DAuthSession.d.ts11 …ultReturnUrl: (urlPath?: string | undefined, options?: Omit<Linking.CreateURLOptions, "queryParams…
H A DSessionUrlProvider.js.map1 …efaultReturnUrl(\n urlPath?: string,\n options?: Omit<Linking.CreateURLOptions, 'queryParams…
/expo/packages/expo-auth-session/src/
H A DSessionUrlProvider.ts12 options?: Omit<Linking.CreateURLOptions, 'queryParams'>