@atlaspack/conditional-import-types 2.13.5-typescript-8a6ec6c8b.0 → 2.13.5-typescript-e769947a5.0

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.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +1 -0
  3. package/package.json +3 -2
package/index.d.ts CHANGED
@@ -1,9 +1,11 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1
2
  type ModuleRef<_PhantomModuleType> = string;
2
3
 
3
4
  type NoImportErrorMessage =
4
5
  "You must annotate type with \"<typeof import('a'), typeof import('b')>\"";
5
6
  type NoDefaultErrorMessage = 'Conditional imports must have a default export';
6
7
 
8
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
7
9
  type ESModuleWithDefaultExport = {[key: string]: any; default: any};
8
10
 
9
11
  type ConditionalImport<
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@atlaspack/conditional-import-types",
3
- "version": "2.13.5-typescript-8a6ec6c8b.0",
3
+ "version": "2.13.5-typescript-e769947a5.0",
4
4
  "license": "MIT",
5
+ "main": "index.js",
5
6
  "types": "index.d.ts",
6
7
  "repository": {
7
8
  "type": "git",
@@ -11,5 +12,5 @@
11
12
  "access": "public"
12
13
  },
13
14
  "type": "commonjs",
14
- "gitHead": "8a6ec6c8bed0bbf5461f5b0f899577a576906051"
15
+ "gitHead": "e769947a5b0c22d9477211ac1ce6614e6bf9def3"
15
16
  }