You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
476 B
11 lines
476 B
import { ExpoConfig } from '@expo/config-types';
|
|
/**
|
|
* Used in expo-constants to generate the `id` property statically for an app in custom managed workflow.
|
|
* This `id` is used for legacy Expo services AuthSession proxy and Expo notifications device ID.
|
|
*
|
|
* @param manifest
|
|
* @returns
|
|
*/
|
|
export declare function getFullName(manifest: Pick<ExpoConfig, 'owner' | 'slug'>): string;
|
|
export declare function getAccountUsername(manifest?: Pick<ExpoConfig, 'owner'>): string;
|