@eslinted/core 3.4.2-rc.1 → 3.4.2-rc.2
Sign up to get free protection for your applications and to get access to all the features.
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
|
+
};
|