dmgLicense.d.ts 278 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 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 {};