angular-three 2.0.0-beta.309 → 2.0.0-beta.310

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/loader.d.ts CHANGED
@@ -21,7 +21,7 @@ export type NgtLoaderResults<TInput extends string | string[] | Record<string, s
21
21
  declare function _injectLoader<TData, TUrl extends string | string[] | Record<string, string>, TLoaderConstructor extends NgtLoaderProto<TData>, TReturn = NgtLoaderReturnType<TData, TLoaderConstructor>>(loaderConstructorFactory: (inputs: string[]) => TLoaderConstructor, inputs: () => TUrl, { extensions, onProgress, onLoad, injector, }?: {
22
22
  extensions?: NgtLoaderExtensions<TLoaderConstructor>;
23
23
  onProgress?: (event: ProgressEvent) => void;
24
- onLoad?: (data: NoInfer<TData>) => void;
24
+ onLoad?: (data: NoInfer<TReturn>) => void;
25
25
  injector?: Injector;
26
26
  }): Signal<NgtLoaderResults<TUrl, NgtBranchingReturn<TReturn, NgtGLTFLike, NgtGLTFLike & NgtObjectMap>> | null>;
27
27
  declare namespace _injectLoader {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three",
3
- "version": "2.0.0-beta.309",
3
+ "version": "2.0.0-beta.310",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },