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.

10 lines
439 B

export declare function validateBundleId(value: string): boolean;
export declare function validatePackage(value: string): boolean;
/**
* A quality of life method that provides a warning when the bundle ID is already in use.
*
* @param bundleId
*/
export declare function getBundleIdWarningAsync(bundleId: string): Promise<string | null>;
export declare function getPackageNameWarningAsync(packageName: string): Promise<string | null>;