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.
15 lines
635 B
15 lines
635 B
import { AppleCtx } from './authenticate';
|
|
export interface EnsureAppExistsOptions {
|
|
enablePushNotifications?: boolean;
|
|
}
|
|
export interface AppLookupParams {
|
|
accountName: string;
|
|
projectName: string;
|
|
bundleIdentifier: string;
|
|
}
|
|
export declare function ensureBundleIdExistsAsync(authCtx: AppleCtx, { accountName, projectName, bundleIdentifier }: AppLookupParams, options?: EnsureAppExistsOptions): Promise<void>;
|
|
export declare function ensureBundleIdExistsWithNameAsync(authCtx: AppleCtx, { name, bundleIdentifier }: {
|
|
name: string;
|
|
bundleIdentifier: string;
|
|
}, options?: EnsureAppExistsOptions): Promise<void>;
|