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.

18 lines
723 B

import { Keystore } from '../credentials';
interface AndroidCredentials {
keystore: Keystore;
}
interface iOSCredentials {
provisioningProfile: string;
distributionCertificate: {
certP12: string;
certPassword: string;
};
}
export declare function fileExistsAsync(projectDir: string): Promise<boolean>;
export declare function readAndroidCredentialsAsync(projectDir: string): Promise<AndroidCredentials>;
export declare function readIosCredentialsAsync(projectDir: string): Promise<iOSCredentials>;
export declare function readSecretEnvsAsync(projectDir: string): Promise<Record<string, string> | undefined>;
export declare function readRawAsync(projectDir: string): Promise<any>;
export {};