@eslinted/core 3.4.2-rc.1 → 3.4.2-rc.2
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/dist/boundary/index.d.ts
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
import type * as Input from "./input/index.js";
|
2
2
|
import type * as Output from "./output/index.js";
|
3
3
|
type Output = Output.Config;
|
4
|
-
|
4
|
+
declare namespace Boundary {
|
5
|
+
type Input = Input.Input;
|
6
|
+
type Output = Output.Config;
|
7
|
+
}
|
8
|
+
export type { Input, Output, Boundary as default, };
|
5
9
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/boundary/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAEjD,KAAK,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AAE5B,YAAY,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/boundary/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAEjD,KAAK,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AAE5B,kBAAU,QAAQ,CAAC;IACjB,KAAY,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IAChC,KAAY,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;CACpC;AAED,YAAY,EACV,KAAK,EACL,MAAM,EACN,QAAQ,IAAI,OAAO,GACpB,CAAC"}
|
package/package.json
CHANGED
package/src/boundary/index.ts
CHANGED
@@ -3,4 +3,13 @@ import type * as Output from "./output/index.js";
|
|
3
3
|
|
4
4
|
type Output = Output.Config;
|
5
5
|
|
6
|
-
|
6
|
+
namespace Boundary {
|
7
|
+
export type Input = Input.Input;
|
8
|
+
export type Output = Output.Config;
|
9
|
+
}
|
10
|
+
|
11
|
+
export type {
|
12
|
+
Input,
|
13
|
+
Output,
|
14
|
+
Boundary as default,
|
15
|
+
};
|