forked from olcxjas-softworks/LarpixClient
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
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 {};
|