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.
5 lines
396 B
5 lines
396 B
/// <reference types="@expo/apple-utils/ts-declarations/expo__app-store" />
|
|
import { BundleId, Profile, RequestContext } from '@expo/apple-utils';
|
|
export declare function getProfilesForBundleIdAsync(context: RequestContext, bundleIdentifier: string): Promise<Profile[]>;
|
|
export declare function getBundleIdForIdentifierAsync(context: RequestContext, bundleIdentifier: string): Promise<BundleId>;
|