interface IResourceLoader {
    load(task: ILoadTask): Promise<any>;
    postLoad(task: ILoadTask, content: any): Promise<void>;
}

实现于

方法