Home
last modified time | relevance | path

Searched refs:getQueryParams (Results 1 – 9 of 9) sorted by relevance

/expo/packages/expo-auth-session/src/__tests__/
H A DQueryParams-test.ts4 const results = QueryParams.getQueryParams('https://demo.io?foo=bar&git=hub');
9 const results = QueryParams.getQueryParams(
H A DAuthRequest-test.ts3 import { buildQueryString, getQueryParams } from '../QueryParams';
130 expect(getQueryParams(url).params.code_challenge).toBe('custom-value');
/expo/packages/expo-auth-session/build/
H A DQueryParams.d.ts2 export declare function getQueryParams(url: string): {
H A DQueryParams.js6 export function getQueryParams(url) { function
H A DAuthRequest.js153 const { params, errorCode } = QueryParams.getQueryParams(url);
H A DQueryParams.js.map1 …ing>): string {\n return qs.stringify(input);\n}\n\nexport function getQueryParams(url: string): …
H A DAuthRequest.js.map1 …: AuthSessionResult {\n const { params, errorCode } = QueryParams.getQueryParams(url);\n con…
/expo/packages/expo-auth-session/src/
H A DQueryParams.ts8 export function getQueryParams(url: string): { function
H A DAuthRequest.ts199 const { params, errorCode } = QueryParams.getQueryParams(url);