dmgLicense.d.ts 278 Bytes
import { PlatformPackager } from "app-builder-lib";
declare type LicenseConfig = {
    '$schema': string;
    body: any[];
    labels: any[];
};
export declare function addLicenseToDmg(packager: PlatformPackager<any>, dmgPath: string): Promise<LicenseConfig | null>;
export {};