functype 0.46.2 → 0.47.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.
- package/dist/{Functype-Dc440LS5.d.ts → Functype-Boat1fLo.d.ts} +1 -1
- package/dist/cli/exports.d.ts +39 -0
- package/dist/cli/exports.js +1 -0
- package/dist/cli/index.js +5 -642
- package/dist/do/index.d.ts +1 -1
- package/dist/either/index.d.ts +2 -2
- package/dist/full-interfaces-D7DbT-2A.js +638 -0
- package/dist/index.d.ts +2 -2
- package/dist/list/index.d.ts +2 -2
- package/dist/map/index.d.ts +2 -2
- package/dist/option/index.d.ts +2 -2
- package/dist/set/index.d.ts +2 -2
- package/dist/try/index.d.ts +2 -2
- package/dist/tuple/index.d.ts +1 -1
- package/package.json +11 -6
- /package/dist/{Typeable-E4-aX9Gc.d.ts → Typeable-lfO2nRVW.d.ts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Brand } from "./branded/index.js";
|
|
2
|
-
import { a as Serializable, c as Foldable, l as Type, n as Typeable, s as Pipe } from "./Typeable-
|
|
2
|
+
import { a as Serializable, c as Foldable, l as Type, n as Typeable, s as Pipe } from "./Typeable-lfO2nRVW.js";
|
|
3
3
|
import { Try } from "./try/index.js";
|
|
4
4
|
import { Set } from "./set/index.js";
|
|
5
5
|
import { Option } from "./option/index.js";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
//#region src/cli/data.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Curated API data for CLI output, optimized for LLM consumption
|
|
4
|
+
*/
|
|
5
|
+
declare const VERSION: string;
|
|
6
|
+
interface TypeData {
|
|
7
|
+
description: string;
|
|
8
|
+
interfaces: string[];
|
|
9
|
+
methods: {
|
|
10
|
+
create?: string[];
|
|
11
|
+
transform?: string[];
|
|
12
|
+
extract?: string[];
|
|
13
|
+
check?: string[];
|
|
14
|
+
other?: string[];
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
interface InterfaceData {
|
|
18
|
+
extends?: string;
|
|
19
|
+
description: string;
|
|
20
|
+
methods: string[];
|
|
21
|
+
}
|
|
22
|
+
declare const TYPES: Record<string, TypeData>;
|
|
23
|
+
declare const INTERFACES: Record<string, InterfaceData>;
|
|
24
|
+
declare const CATEGORIES: {
|
|
25
|
+
Core: string[];
|
|
26
|
+
Collection: string[];
|
|
27
|
+
Effect: string[];
|
|
28
|
+
Utility: string[];
|
|
29
|
+
};
|
|
30
|
+
//#endregion
|
|
31
|
+
//#region src/cli/full-interfaces.d.ts
|
|
32
|
+
/**
|
|
33
|
+
* Auto-generated full interface definitions.
|
|
34
|
+
* Generated by scripts/extract-interfaces.ts
|
|
35
|
+
* DO NOT EDIT MANUALLY
|
|
36
|
+
*/
|
|
37
|
+
declare const FULL_INTERFACES: Record<string, string>;
|
|
38
|
+
//#endregion
|
|
39
|
+
export { CATEGORIES, FULL_INTERFACES, INTERFACES, type InterfaceData, TYPES, type TypeData, VERSION };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as e,i as t,n,r,t as i}from"../full-interfaces-D7DbT-2A.js";export{n as CATEGORIES,i as FULL_INTERFACES,r as INTERFACES,t as TYPES,e as VERSION};
|