@dereekb/rxjs 13.6.11 → 13.6.12

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@dereekb/rxjs",
3
- "version": "13.6.11",
3
+ "version": "13.6.12",
4
4
  "peerDependencies": {
5
5
  "rxjs": "^7.8.0",
6
- "@dereekb/util": "13.6.11"
6
+ "@dereekb/util": "13.6.12"
7
7
  },
8
8
  "exports": {
9
9
  "./package.json": "./package.json",
@@ -1,4 +1,4 @@
1
- import { type AssetPathRef, type AssetLoaderAssetInstance, type AssetLoaderGetFn, AssetLoader } from './asset';
1
+ import { type AssetPathRef, type AssetLoaderAssetInstance, type AssetLoaderGetFn, type AssetLoader } from './asset';
2
2
  /**
3
3
  * Creates an {@link AssetLoaderAssetInstance} from a ref and a Promise-based get function.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { AssetLoader } from './asset';
1
+ import { type AssetLoader } from './asset';
2
2
  /**
3
3
  * Configuration for {@link delegatedAssetLoader}.
4
4
  * Specifies which loader handles each source type.
@@ -1,4 +1,4 @@
1
- import { AssetLoader } from './asset';
1
+ import { type AssetLoader } from './asset';
2
2
  /**
3
3
  * Configuration for {@link fetchAssetLoader}.
4
4
  */
@@ -1,4 +1,4 @@
1
- import { type AssetPathRef, AssetLoader } from './asset';
1
+ import { type AssetPathRef, type AssetLoader } from './asset';
2
2
  /**
3
3
  * Creates an {@link AssetLoader} backed by an in-memory map.
4
4
  * Useful for testing without filesystem or network access.