interface AppBundle {
    comment?: string;
    files: AppBundleFile[];
    functions?: FunctionManifestProps[];
    sys: AppBundleSys;
    delete(): Promise<void>;
    toPlainObject(): AppBundleProps;
}

Hierarchy (view full)

Properties

comment?: string

A comment that describes this bundle

files: AppBundleFile[]

List of all the files that are in this bundle

functions?: FunctionManifestProps[]

List of all functions in the bundle

sys: AppBundleSys

System metadata

Methods

  • Deletes this object on the server.

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.