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.

17 lines
705 B

import { ProvisioningProfile } from '../../appleApi';
import { AppLookupParams } from '../api/IosApi';
import { Context, IView } from '../context';
export declare type ProvisioningProfileAdhocOptions = {
distCertSerialNumber: string;
udids: string[];
};
export declare class CreateOrReuseProvisioningProfileAdhoc implements IView {
private app;
private distCertSerialNumber;
private udids;
constructor(app: AppLookupParams, options: ProvisioningProfileAdhocOptions);
assignProvisioningProfile(ctx: Context, provisioningProfile: ProvisioningProfile): Promise<void>;
createOrReuse(ctx: Context): Promise<ProvisioningProfile>;
open(ctx: Context): Promise<IView | null>;
}