@fncts/pattern 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":["_tsPattern","require","match","_match","exports"],"sources":["../_src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,UAAA,gBAAAC,OAAA;AAEA;;;AAGO,MAAMC,KAAK,GAAGC,gBAAM;AAACC,OAAA,CAAAF,KAAA,GAAAA,KAAA"}
1
+ {"version":3,"file":"index.cjs","names":["_tsPattern","require","match","_match","exports"],"sources":["../_src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAGA,IAAAA,UAAA,gBAAAC,OAAA;AAEA;;;AAGO,MAAMC,KAAK,GAGdC,gBAAM;AAACC,OAAA,CAAAF,KAAA,GAAAA,KAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":["match","_match","isMatching","P","Pattern"],"sources":["../_src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,KAAK,IAAIC,MAAM,QAAQ,YAAY;AAE5C;;;AAGA,OAAO,MAAMD,KAAK,GAAGC,MAAM;AAE3B,SAASC,UAAU,EAAEC,CAAC,EAAEC,OAAO,QAAQ,YAAY"}
1
+ {"version":3,"file":"index.mjs","names":["match","_match","isMatching","P","Pattern"],"sources":["../_src/index.ts"],"sourcesContent":[null],"mappings":"AAGA,SAASA,KAAK,IAAIC,MAAM,QAAQ,YAAY;AAE5C;;;AAGA,OAAO,MAAMD,KAAK,GAGdC,MAAM;AAEV,SAASC,UAAU,EAAEC,CAAC,EAAEC,OAAO,QAAQ,YAAY"}
package/_src/index.ts CHANGED
@@ -1,8 +1,14 @@
1
+ import type { unset } from "ts-pattern/dist/internals/symbols";
2
+ import type { Match } from "ts-pattern/dist/types/Match";
3
+
1
4
  import { match as _match } from "ts-pattern";
2
5
 
3
6
  /**
4
7
  * @tsplus getter global match
5
8
  */
6
- export const match = _match;
9
+ export const match: {
10
+ <input, output = unset>(value: input): Match<input, output>;
11
+ <input extends [any, ...any], output = unset>(value: input): Match<input, output>;
12
+ } = _match;
7
13
 
8
14
  export { isMatching, P, Pattern } from "ts-pattern";
package/index.d.ts CHANGED
@@ -1,7 +1,11 @@
1
- import { match as _match } from "ts-pattern";
1
+ import type { unset } from "ts-pattern/dist/internals/symbols";
2
+ import type { Match } from "ts-pattern/dist/types/Match";
2
3
  /**
3
4
  * @tsplus getter global match
4
5
  * @tsplus location "@fncts/pattern/index"
5
6
  */
6
- export declare const match: typeof _match;
7
+ export declare const match: {
8
+ <input, output = unset>(value: input): Match<input, output>;
9
+ <input extends [any, ...any], output = unset>(value: input): Match<input, output>;
10
+ };
7
11
  export { isMatching, P, Pattern } from "ts-pattern";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fncts/pattern",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "dependencies": {
5
5
  "ts-pattern": "^4.2.2"
6
6
  },