interface IAnimateLoaderTarget {
    basepath: string;
    filepath?: string;
    id: string;
    options?: IAnimateLoadAssetOption & {
        handleManifest?: ((manifests) => Promise<void>);
    };
}

Hierarchy (view full)

Properties

basepath: string

Directory path of Animate content.

filepath?: string

Javascript file path of Animate content.

id: string

"lib.properties.id" in Animate content.

options?: IAnimateLoadAssetOption & {
    handleManifest?: ((manifests) => Promise<void>);
}

Type declaration

  • Optional handleManifest?: ((manifests) => Promise<void>)

    Additional processing handlers for lib.properties.manifest.

    Changes made by this process are temporary and will only be reflected in the current load process.

      • (manifests): Promise<void>
      • Parameters

        Returns Promise<void>

Generated using TypeDoc