@expo/xdl
Version:
The Expo Development Library
33 lines (32 loc) • 878 B
TypeScript
export declare type Credentials = {
appleId?: string;
password?: string;
teamId?: string;
certP12?: string;
certPassword?: string;
pushP12?: string;
pushPassword?: string;
provisioningProfile?: string;
enterpriseAccount?: string;
certId?: string;
pushId?: string;
provisioningProfileId?: string;
pushPrivateSigningKey?: string;
certPrivateSigningKey?: string;
apnsKeyId?: string;
apnsKeyP8?: string;
};
export declare type CredObject = {
name: string;
value: {
userCredentialsId?: string;
serialNumber?: string;
};
};
export declare type CredsList = CredObject[];
export declare function formatDistCerts(distCerts: any, options: {
provideFullCertificate?: boolean;
}): any;
export declare function formatPushKeys(pushKeys: any, options: {
provideFullPushKey?: boolean;
}): any;