Type alias AppAssetInfo

AppAssetInfo: {
    alias: string;
    args?: string;
    mandatory?: boolean;
    src: string;
    target?: string;
    version: string;
}

Type declaration

  • alias: string

    The name of the asset

  • Optional args?: string

    The default command line arguments for the aforementioned target.

  • Optional mandatory?: boolean

    When set to true, the app will fail to load if the asset cannot be downloaded. When set to false, the app will continue to load if the asset cannot be downloaded. (Default: true)

  • src: string

    The URL to a zip file containing the package files (executables, dlls, etc…)

  • Optional target?: string

    Specify default executable to launch. This option can be overridden in launchExternalProcess

  • version: string

    The version of the package

Generated using TypeDoc