A handle to the "LensStudio:AssetLibrary".AssetListService which can provide a list of assets based on the passed in parameters.

interface AssetListService {
    fetch(request: AssetListRequest, onSuccess: ((arg1: AssetListSuccess) => void), onFailure: ((arg1: ServiceError) => void)): void;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Methods