@powerlines/plugin-nodejs 0.1.0 → 0.1.1
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/_virtual/rolldown_runtime.cjs +29 -0
- package/dist/components/env.cjs +188 -2
- package/dist/components/env.d.cts +9 -2
- package/dist/components/env.d.mts +9 -2
- package/dist/components/env.mjs +185 -1
- package/dist/components/index.cjs +2 -3
- package/dist/components/index.d.cts +1 -3
- package/dist/components/index.d.mts +1 -3
- package/dist/components/index.mjs +1 -2
- package/dist/deepkit/schemas/reflection.cjs +3940 -0
- package/dist/{plugin-D7kBf19k.d.cts → deepkit/schemas/reflection.d.cts} +1 -1078
- package/dist/{plugin-JL1BtFku.d.mts → deepkit/schemas/reflection.d.mts} +59 -1136
- package/dist/deepkit/schemas/reflection.mjs +3938 -0
- package/dist/deepkit/schemas/reflection2.cjs +4112 -0
- package/dist/deepkit/schemas/reflection2.mjs +4110 -0
- package/dist/deepkit/src/capnp.cjs +913 -0
- package/dist/deepkit/src/capnp.mjs +911 -0
- package/dist/deepkit/src/esbuild-plugin.cjs +47 -0
- package/dist/deepkit/src/esbuild-plugin.mjs +46 -0
- package/dist/deepkit/src/reflect-type.cjs +22 -0
- package/dist/deepkit/src/reflect-type.mjs +20 -0
- package/dist/deepkit/src/resolve-reflections.cjs +16 -0
- package/dist/deepkit/src/resolve-reflections.mjs +15 -0
- package/dist/deepkit/src/transformer.cjs +52 -0
- package/dist/deepkit/src/transformer.mjs +49 -0
- package/dist/deepkit/src/transpile.cjs +29 -0
- package/dist/deepkit/src/transpile.mjs +27 -0
- package/dist/deepkit/src/types.d.cts +10 -0
- package/dist/deepkit/src/types.d.mts +10 -0
- package/dist/deepkit/src/utilities.cjs +66 -0
- package/dist/deepkit/src/utilities.mjs +65 -0
- package/dist/index.cjs +14 -813
- package/dist/index.d.cts +5 -5
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +11 -803
- package/dist/plugin-alloy/src/core/components/output.cjs +45 -0
- package/dist/plugin-alloy/src/core/components/output.mjs +44 -0
- package/dist/plugin-alloy/src/core/components/single-line-comment.cjs +22 -0
- package/dist/plugin-alloy/src/core/components/single-line-comment.mjs +21 -0
- package/dist/plugin-alloy/src/core/components/source-file.cjs +64 -0
- package/dist/plugin-alloy/src/core/components/source-file.d.cts +23 -0
- package/dist/plugin-alloy/src/core/components/source-file.d.mts +23 -0
- package/dist/plugin-alloy/src/core/components/source-file.mjs +62 -0
- package/dist/plugin-alloy/src/core/contexts/context.cjs +60 -0
- package/dist/plugin-alloy/src/core/contexts/context.mjs +54 -0
- package/dist/plugin-alloy/src/core/contexts/index.cjs +2 -0
- package/dist/plugin-alloy/src/core/contexts/index.mjs +4 -0
- package/dist/plugin-alloy/src/core/contexts/reflection.cjs +46 -0
- package/dist/plugin-alloy/src/core/contexts/reflection.mjs +42 -0
- package/dist/plugin-alloy/src/helpers/refkey.cjs +16 -0
- package/dist/plugin-alloy/src/helpers/refkey.mjs +15 -0
- package/dist/plugin-alloy/src/index.cjs +93 -0
- package/dist/plugin-alloy/src/index.mjs +91 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-file.cjs +7 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-file.mjs +9 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-table.cjs +5 -0
- package/dist/plugin-alloy/src/markdown/components/markdown-table.mjs +7 -0
- package/dist/plugin-alloy/src/markdown/contexts/markdown-table.cjs +17 -0
- package/dist/plugin-alloy/src/markdown/contexts/markdown-table.mjs +17 -0
- package/dist/plugin-alloy/src/types/components.d.cts +22 -0
- package/dist/plugin-alloy/src/types/components.d.mts +24 -0
- package/dist/plugin-alloy/src/types/index.d.mts +2 -0
- package/dist/plugin-alloy/src/types/plugin.d.cts +37 -0
- package/dist/plugin-alloy/src/types/plugin.d.mts +37 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.cjs +57 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.d.cts +25 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.d.mts +26 -0
- package/dist/plugin-alloy/src/typescript/components/builtin-file.mjs +56 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.cjs +126 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.mjs +124 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.cjs +442 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.d.cts +27 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.d.mts +28 -0
- package/dist/plugin-alloy/src/typescript/components/tsdoc.mjs +433 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.cjs +194 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.d.cts +14 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.d.mts +15 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-file.mjs +191 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.cjs +68 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.cts +1 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.mts +4 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-interface.mjs +67 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-object.cjs +124 -0
- package/dist/plugin-alloy/src/typescript/components/typescript-object.mjs +123 -0
- package/dist/plugin-automd/src/index.cjs +101 -0
- package/dist/plugin-automd/src/index.mjs +98 -0
- package/dist/plugin-automd/src/types/plugin.d.cts +38 -0
- package/dist/plugin-automd/src/types/plugin.d.mts +40 -0
- package/dist/plugin-automd/src/types/toc.d.cts +33 -0
- package/dist/plugin-automd/src/types/toc.d.mts +33 -0
- package/dist/plugin-babel/src/helpers/ast-utils.cjs +10 -0
- package/dist/plugin-babel/src/helpers/ast-utils.mjs +9 -0
- package/dist/plugin-babel/src/helpers/create-plugin.cjs +41 -0
- package/dist/plugin-babel/src/helpers/create-plugin.mjs +39 -0
- package/dist/plugin-babel/src/helpers/filters.cjs +23 -0
- package/dist/plugin-babel/src/helpers/filters.mjs +21 -0
- package/dist/plugin-babel/src/helpers/index.cjs +5 -0
- package/dist/plugin-babel/src/helpers/index.mjs +7 -0
- package/dist/plugin-babel/src/helpers/module-helpers.cjs +38 -0
- package/dist/plugin-babel/src/helpers/module-helpers.mjs +35 -0
- package/dist/plugin-babel/src/helpers/options.cjs +50 -0
- package/dist/plugin-babel/src/helpers/options.mjs +47 -0
- package/dist/plugin-babel/src/index.cjs +91 -0
- package/dist/plugin-babel/src/index.mjs +89 -0
- package/dist/plugin-babel/src/types/index.d.mts +1 -0
- package/dist/plugin-babel/src/types/plugin.d.cts +15 -0
- package/dist/plugin-babel/src/types/plugin.d.mts +15 -0
- package/dist/plugin-env/src/babel/index.cjs +1 -0
- package/dist/plugin-env/src/babel/index.mjs +3 -0
- package/dist/plugin-env/src/babel/plugin.cjs +121 -0
- package/dist/plugin-env/src/babel/plugin.mjs +119 -0
- package/dist/plugin-env/src/components/docs.cjs +9 -0
- package/dist/plugin-env/src/components/docs.mjs +11 -0
- package/dist/plugin-env/src/components/env.cjs +575 -0
- package/dist/plugin-env/src/components/env.d.cts +11 -0
- package/dist/plugin-env/src/components/env.d.mts +11 -0
- package/dist/plugin-env/src/components/env.mjs +572 -0
- package/dist/plugin-env/src/components/index.cjs +2 -0
- package/dist/plugin-env/src/components/index.mjs +4 -0
- package/dist/plugin-env/src/helpers/automd-generator.cjs +22 -0
- package/dist/plugin-env/src/helpers/automd-generator.mjs +21 -0
- package/dist/plugin-env/src/helpers/create-reflection-resource.cjs +55 -0
- package/dist/plugin-env/src/helpers/create-reflection-resource.mjs +54 -0
- package/dist/plugin-env/src/helpers/index.cjs +6 -0
- package/dist/plugin-env/src/helpers/index.mjs +8 -0
- package/dist/plugin-env/src/helpers/load.cjs +83 -0
- package/dist/plugin-env/src/helpers/load.mjs +80 -0
- package/dist/plugin-env/src/helpers/persistence.cjs +199 -0
- package/dist/plugin-env/src/helpers/persistence.mjs +188 -0
- package/dist/plugin-env/src/helpers/reflect.cjs +111 -0
- package/dist/plugin-env/src/helpers/reflect.mjs +103 -0
- package/dist/plugin-env/src/helpers/source-file-env.cjs +24 -0
- package/dist/plugin-env/src/helpers/source-file-env.mjs +23 -0
- package/dist/plugin-env/src/helpers/template-helpers.cjs +2 -0
- package/dist/plugin-env/src/helpers/template-helpers.mjs +4 -0
- package/dist/plugin-env/src/index.cjs +175 -0
- package/dist/plugin-env/src/index.mjs +173 -0
- package/dist/plugin-env/src/types/plugin.d.cts +151 -0
- package/dist/plugin-env/src/types/plugin.d.mts +153 -0
- package/dist/plugin-env/src/types/runtime.d.cts +792 -0
- package/dist/plugin-env/src/types/runtime.d.mts +792 -0
- package/dist/powerlines/src/lib/build/esbuild.cjs +102 -0
- package/dist/powerlines/src/lib/build/esbuild.mjs +100 -0
- package/dist/powerlines/src/lib/entry.cjs +12 -0
- package/dist/powerlines/src/lib/entry.mjs +14 -0
- package/dist/powerlines/src/lib/logger.cjs +41 -0
- package/dist/powerlines/src/lib/logger.mjs +39 -0
- package/dist/powerlines/src/lib/typescript/tsconfig.cjs +38 -0
- package/dist/powerlines/src/lib/typescript/tsconfig.mjs +35 -0
- package/dist/powerlines/src/lib/utilities/bundle.cjs +35 -0
- package/dist/powerlines/src/lib/utilities/bundle.mjs +34 -0
- package/dist/powerlines/src/lib/utilities/resolve.cjs +30 -0
- package/dist/powerlines/src/lib/utilities/resolve.mjs +29 -0
- package/dist/powerlines/src/plugin-utils/paths.cjs +1 -0
- package/dist/powerlines/src/plugin-utils/paths.mjs +3 -0
- package/dist/powerlines/src/types/babel.d.cts +22 -0
- package/dist/powerlines/src/types/babel.d.mts +22 -0
- package/dist/powerlines/src/types/build.d.cts +145 -0
- package/dist/powerlines/src/types/build.d.mts +145 -0
- package/dist/powerlines/src/types/commands.d.cts +8 -0
- package/dist/powerlines/src/types/commands.d.mts +9 -0
- package/dist/powerlines/src/types/config.d.cts +387 -0
- package/dist/powerlines/src/types/config.d.mts +388 -0
- package/dist/powerlines/src/types/context.d.cts +414 -0
- package/dist/powerlines/src/types/context.d.mts +416 -0
- package/dist/powerlines/src/types/fs.d.cts +486 -0
- package/dist/powerlines/src/types/fs.d.mts +486 -0
- package/dist/powerlines/src/types/hooks.d.mts +2 -0
- package/dist/powerlines/src/types/plugin.d.cts +231 -0
- package/dist/powerlines/src/types/plugin.d.mts +231 -0
- package/dist/powerlines/src/types/resolved.d.cts +82 -0
- package/dist/powerlines/src/types/resolved.d.mts +82 -0
- package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
- package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
- package/dist/types/index.cjs +0 -2
- package/dist/types/index.d.cts +1 -3
- package/dist/types/index.d.mts +1 -3
- package/dist/types/index.mjs +0 -3
- package/dist/types/plugin.cjs +0 -1
- package/dist/types/plugin.d.cts +22 -2
- package/dist/types/plugin.d.mts +22 -2
- package/dist/types/plugin.mjs +0 -2
- package/package.json +6 -6
- package/dist/components-BWLXb7a2.cjs +0 -0
- package/dist/components-CXZYcH4q.d.mts +0 -1816
- package/dist/components-kh0CpIG2.mjs +0 -1
- package/dist/env-CAhIy_H3.cjs +0 -11713
- package/dist/env-CUyFiniR.d.cts +0 -107
- package/dist/env-IF4XhMjG.mjs +0 -11570
- package/dist/env-sRb-Y8mJ.d.mts +0 -89
- package/dist/index-CUbWeWHc.d.mts +0 -1
- package/dist/index-D6CnpA_r.d.cts +0 -1
- package/dist/index-DL0uimUT.d.mts +0 -1
- package/dist/index-DWPDThxu.d.cts +0 -1
- package/dist/plugin-ifZVa20V.mjs +0 -1
- package/dist/plugin-pBKbb5K9.cjs +0 -0
- package/dist/resolved-zsx09G03.d.cts +0 -1795
- package/dist/types-U3zd8PTP.mjs +0 -1
- package/dist/types-o3zWarRp.cjs +0 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { TSDoc, TSDocAttributesTags } from "./tsdoc.mjs";
|
|
2
|
+
import { useReflectionClass, useReflectionProperty } from "../../core/contexts/reflection.mjs";
|
|
3
|
+
import { createComponent, memo, mergeProps } from "@alloy-js/core/jsx-runtime";
|
|
4
|
+
import { isSetString } from "@stryke/type-checks/is-set-string";
|
|
5
|
+
import { titleCase } from "@stryke/string-format/title-case";
|
|
6
|
+
import { isString } from "@stryke/type-checks/is-string";
|
|
7
|
+
import { List, Show, childrenArray, code, computed, splitProps } from "@alloy-js/core";
|
|
8
|
+
import { isUndefined } from "@stryke/type-checks/is-undefined";
|
|
9
|
+
|
|
10
|
+
//#region ../plugin-alloy/src/typescript/components/tsdoc-reflection.tsx
|
|
11
|
+
/**
|
|
12
|
+
* Generates a TypeScript interface property for the given reflection class.
|
|
13
|
+
*/
|
|
14
|
+
function TSDocReflectionClass(props) {
|
|
15
|
+
const [{ children }, rest] = splitProps(props, ["children"]);
|
|
16
|
+
const reflectionClass = useReflectionClass();
|
|
17
|
+
const title = computed(() => reflectionClass.reflection.getTitle() || titleCase(reflectionClass.reflection.getName()));
|
|
18
|
+
const alias = computed(() => reflectionClass.reflection.getAlias());
|
|
19
|
+
const domain = computed(() => reflectionClass.reflection.getDomain());
|
|
20
|
+
const permission = computed(() => reflectionClass.reflection.getPermission());
|
|
21
|
+
const readonly = computed(() => reflectionClass.reflection.isReadonly());
|
|
22
|
+
const internal = computed(() => reflectionClass.reflection.isInternal());
|
|
23
|
+
const ignore = computed(() => reflectionClass.reflection.isIgnored());
|
|
24
|
+
const hidden = computed(() => reflectionClass.reflection.isHidden());
|
|
25
|
+
if (!reflectionClass.reflection.getName()) return null;
|
|
26
|
+
return createComponent(TSDoc, mergeProps(rest, {
|
|
27
|
+
get heading() {
|
|
28
|
+
return reflectionClass.reflection.getDescription();
|
|
29
|
+
},
|
|
30
|
+
get children() {
|
|
31
|
+
return [createComponent(Show, {
|
|
32
|
+
get when() {
|
|
33
|
+
return isSetString(title.value) || !isUndefined(alias.value) && alias.value.length > 0 || !isUndefined(permission.value) && permission.value.length > 0 || isSetString(domain.value) || !isUndefined(readonly.value) || !isUndefined(internal.value) || !isUndefined(ignore.value) || !isUndefined(hidden.value);
|
|
34
|
+
},
|
|
35
|
+
get children() {
|
|
36
|
+
return createComponent(TSDocAttributesTags, {
|
|
37
|
+
get title() {
|
|
38
|
+
return title.value;
|
|
39
|
+
},
|
|
40
|
+
get alias() {
|
|
41
|
+
return alias.value;
|
|
42
|
+
},
|
|
43
|
+
get domain() {
|
|
44
|
+
return domain.value;
|
|
45
|
+
},
|
|
46
|
+
get permission() {
|
|
47
|
+
return permission.value;
|
|
48
|
+
},
|
|
49
|
+
get readonly() {
|
|
50
|
+
return readonly.value;
|
|
51
|
+
},
|
|
52
|
+
get internal() {
|
|
53
|
+
return internal.value;
|
|
54
|
+
},
|
|
55
|
+
get ignore() {
|
|
56
|
+
return ignore.value;
|
|
57
|
+
},
|
|
58
|
+
get hidden() {
|
|
59
|
+
return hidden.value;
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
}), createComponent(Show, {
|
|
64
|
+
get when() {
|
|
65
|
+
return memo(() => !!Boolean(children))() && childrenArray(() => children).length > 0;
|
|
66
|
+
},
|
|
67
|
+
get children() {
|
|
68
|
+
return createComponent(List, { get children() {
|
|
69
|
+
return childrenArray(() => children);
|
|
70
|
+
} });
|
|
71
|
+
}
|
|
72
|
+
})];
|
|
73
|
+
}
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Generates a TypeScript interface property for the given reflection class.
|
|
78
|
+
*/
|
|
79
|
+
function TSDocReflectionProperty(props) {
|
|
80
|
+
const [{ children }, rest] = splitProps(props, ["children"]);
|
|
81
|
+
const context = useReflectionProperty();
|
|
82
|
+
return createComponent(TSDoc, mergeProps({ get heading() {
|
|
83
|
+
return context.getDescription();
|
|
84
|
+
} }, rest, { get children() {
|
|
85
|
+
return [createComponent(TSDocAttributesTags, {
|
|
86
|
+
get title() {
|
|
87
|
+
return context.getTitle();
|
|
88
|
+
},
|
|
89
|
+
get alias() {
|
|
90
|
+
return context.getAlias();
|
|
91
|
+
},
|
|
92
|
+
get domain() {
|
|
93
|
+
return context.getDomain();
|
|
94
|
+
},
|
|
95
|
+
get permission() {
|
|
96
|
+
return context.getPermission();
|
|
97
|
+
},
|
|
98
|
+
get readonly() {
|
|
99
|
+
return context.isReadonly();
|
|
100
|
+
},
|
|
101
|
+
get internal() {
|
|
102
|
+
return context.isInternal();
|
|
103
|
+
},
|
|
104
|
+
get ignore() {
|
|
105
|
+
return context.isIgnored();
|
|
106
|
+
},
|
|
107
|
+
get hidden() {
|
|
108
|
+
return context.isHidden();
|
|
109
|
+
}
|
|
110
|
+
}), createComponent(Show, {
|
|
111
|
+
get when() {
|
|
112
|
+
return memo(() => !!Boolean(children))() && childrenArray(() => children).length > 0;
|
|
113
|
+
},
|
|
114
|
+
get children() {
|
|
115
|
+
return createComponent(List, { get children() {
|
|
116
|
+
return childrenArray(() => children);
|
|
117
|
+
} });
|
|
118
|
+
}
|
|
119
|
+
})];
|
|
120
|
+
} }));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
//#endregion
|
|
124
|
+
export { TSDocReflectionClass, TSDocReflectionProperty };
|
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
const require_context = require('../../core/contexts/context.cjs');
|
|
3
|
+
const require_utilities = require('../../../../deepkit/src/utilities.cjs');
|
|
4
|
+
let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
|
|
5
|
+
let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
|
|
6
|
+
let __alloy_js_core = require("@alloy-js/core");
|
|
7
|
+
let __stryke_type_checks_is_undefined = require("@stryke/type-checks/is-undefined");
|
|
8
|
+
|
|
9
|
+
//#region ../plugin-alloy/src/typescript/components/tsdoc.tsx
|
|
10
|
+
/**
|
|
11
|
+
* Generates a TypeScript interface for the given reflection class.
|
|
12
|
+
*/
|
|
13
|
+
function TSDoc(props) {
|
|
14
|
+
const [{ children, heading }] = (0, __alloy_js_core.splitProps)(props, ["children", "heading"]);
|
|
15
|
+
return [
|
|
16
|
+
"/**",
|
|
17
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("align", {
|
|
18
|
+
string: " * ",
|
|
19
|
+
get children() {
|
|
20
|
+
return [
|
|
21
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
22
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
23
|
+
get when() {
|
|
24
|
+
return !(0, __stryke_type_checks_is_undefined.isUndefined)(heading);
|
|
25
|
+
},
|
|
26
|
+
get children() {
|
|
27
|
+
return [
|
|
28
|
+
heading,
|
|
29
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
30
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
31
|
+
get when() {
|
|
32
|
+
return (0, __alloy_js_core_jsx_runtime.memo)(() => !!!(0, __stryke_type_checks_is_undefined.isUndefined)(children))() && (0, __alloy_js_core.childrenArray)(() => children).length > 0;
|
|
33
|
+
},
|
|
34
|
+
get children() {
|
|
35
|
+
return (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {});
|
|
36
|
+
}
|
|
37
|
+
})
|
|
38
|
+
];
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
42
|
+
get when() {
|
|
43
|
+
return (0, __alloy_js_core_jsx_runtime.memo)(() => !!!(0, __stryke_type_checks_is_undefined.isUndefined)(children))() && (0, __alloy_js_core.childrenArray)(() => children).length > 0;
|
|
44
|
+
},
|
|
45
|
+
get children() {
|
|
46
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.List, { get children() {
|
|
47
|
+
return (0, __alloy_js_core.childrenArray)(() => children);
|
|
48
|
+
} });
|
|
49
|
+
}
|
|
50
|
+
})
|
|
51
|
+
];
|
|
52
|
+
}
|
|
53
|
+
}),
|
|
54
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
55
|
+
` */`,
|
|
56
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
|
|
57
|
+
];
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Create a TSDoc `@<props.tag>` tag.
|
|
61
|
+
*/
|
|
62
|
+
function TSDocTag(props) {
|
|
63
|
+
const [{ children, tag }] = (0, __alloy_js_core.splitProps)(props, ["children", "tag"]);
|
|
64
|
+
return [
|
|
65
|
+
`@${tag} `,
|
|
66
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
67
|
+
get when() {
|
|
68
|
+
return Boolean(children);
|
|
69
|
+
},
|
|
70
|
+
get children() {
|
|
71
|
+
return (0, __alloy_js_core_jsx_runtime.createIntrinsic)("align", {
|
|
72
|
+
width: 2,
|
|
73
|
+
get children() {
|
|
74
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Prose, { children });
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
}),
|
|
79
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
|
|
80
|
+
];
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Create a TSDoc `@title` tag.
|
|
84
|
+
*/
|
|
85
|
+
function TSDocTitle(props) {
|
|
86
|
+
const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
|
|
87
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(rest, {
|
|
88
|
+
tag: "title",
|
|
89
|
+
children
|
|
90
|
+
}));
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Create a TSDoc `@domain` tag.
|
|
94
|
+
*/
|
|
95
|
+
function TSDocDomain(props) {
|
|
96
|
+
const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
|
|
97
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(rest, {
|
|
98
|
+
tag: "domain",
|
|
99
|
+
children
|
|
100
|
+
}));
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Create a TSDoc `@alias` tag.
|
|
104
|
+
*/
|
|
105
|
+
function TSDocAlias(props) {
|
|
106
|
+
const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
|
|
107
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(rest, {
|
|
108
|
+
tag: "alias",
|
|
109
|
+
children
|
|
110
|
+
}));
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Create a TSDoc `@permission` tag.
|
|
114
|
+
*/
|
|
115
|
+
function TSDocPermission(props) {
|
|
116
|
+
const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
|
|
117
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(rest, {
|
|
118
|
+
tag: "permission",
|
|
119
|
+
children
|
|
120
|
+
}));
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Create a TSDoc `@defaultValue` tag.
|
|
124
|
+
*/
|
|
125
|
+
function TSDocDefaultValue(props) {
|
|
126
|
+
return [
|
|
127
|
+
"@defaultValue ",
|
|
128
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
129
|
+
get when() {
|
|
130
|
+
return !(0, __stryke_type_checks_is_undefined.isUndefined)(props.value);
|
|
131
|
+
},
|
|
132
|
+
get children() {
|
|
133
|
+
return (0, __alloy_js_core_jsx_runtime.createIntrinsic)("align", {
|
|
134
|
+
width: 2,
|
|
135
|
+
get children() {
|
|
136
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Prose, { get children() {
|
|
137
|
+
return require_utilities.stringifyDefaultValue(props.value);
|
|
138
|
+
} });
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}),
|
|
143
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
|
|
144
|
+
];
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Create a TSDoc `@remarks` tag.
|
|
148
|
+
*/
|
|
149
|
+
function TSDocRemarks(props) {
|
|
150
|
+
return [
|
|
151
|
+
"@remarks ",
|
|
152
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
153
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.List, {
|
|
154
|
+
hardline: true,
|
|
155
|
+
get children() {
|
|
156
|
+
return (0, __alloy_js_core.childrenArray)(() => props.children);
|
|
157
|
+
}
|
|
158
|
+
})
|
|
159
|
+
];
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Create a TSDoc `@see` tag.
|
|
163
|
+
*/
|
|
164
|
+
function TSDocLink(props) {
|
|
165
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(props, { tag: "see" }));
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Create a TSDoc `@example` tag.
|
|
169
|
+
*/
|
|
170
|
+
function TSDocExample(props) {
|
|
171
|
+
const [{ tsx, fenced = true, language, children }] = (0, __alloy_js_core.splitProps)(props, [
|
|
172
|
+
"tsx",
|
|
173
|
+
"fenced",
|
|
174
|
+
"language",
|
|
175
|
+
"children"
|
|
176
|
+
]);
|
|
177
|
+
return [
|
|
178
|
+
"@example ",
|
|
179
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
180
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
181
|
+
when: fenced,
|
|
182
|
+
get children() {
|
|
183
|
+
return [
|
|
184
|
+
"```",
|
|
185
|
+
language || (tsx ? "tsx" : "ts"),
|
|
186
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
|
|
187
|
+
];
|
|
188
|
+
}
|
|
189
|
+
}),
|
|
190
|
+
children,
|
|
191
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
192
|
+
when: fenced,
|
|
193
|
+
get children() {
|
|
194
|
+
return [(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}), "```"];
|
|
195
|
+
}
|
|
196
|
+
})
|
|
197
|
+
];
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Create a TSDoc `@readonly` tag.
|
|
201
|
+
*/
|
|
202
|
+
function TSDocReadonly() {
|
|
203
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, { tag: "readonly" });
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Create a TSDoc `@internal` tag.
|
|
207
|
+
*/
|
|
208
|
+
function TSDocInternal() {
|
|
209
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, { tag: "internal" });
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Create a TSDoc `@ignore` tag.
|
|
213
|
+
*/
|
|
214
|
+
function TSDocIgnore() {
|
|
215
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, { tag: "ignore" });
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Create a TSDoc `@hidden` tag.
|
|
219
|
+
*/
|
|
220
|
+
function TSDocHidden() {
|
|
221
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, { tag: "hidden" });
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* Generates a TypeScript interface property for the given reflection class.
|
|
225
|
+
*/
|
|
226
|
+
function TSDocAttributesTags(props) {
|
|
227
|
+
const [{ title, alias, permission, domain, readonly, internal, ignore, hidden, defaultValue }] = (0, __alloy_js_core.splitProps)(props, [
|
|
228
|
+
"title",
|
|
229
|
+
"alias",
|
|
230
|
+
"permission",
|
|
231
|
+
"domain",
|
|
232
|
+
"readonly",
|
|
233
|
+
"internal",
|
|
234
|
+
"ignore",
|
|
235
|
+
"hidden",
|
|
236
|
+
"defaultValue"
|
|
237
|
+
]);
|
|
238
|
+
return [
|
|
239
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
240
|
+
get when() {
|
|
241
|
+
return (0, __stryke_type_checks_is_set_string.isSetString)(title);
|
|
242
|
+
},
|
|
243
|
+
get children() {
|
|
244
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTitle, { children: title });
|
|
245
|
+
}
|
|
246
|
+
}),
|
|
247
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
248
|
+
get when() {
|
|
249
|
+
return !(0, __stryke_type_checks_is_undefined.isUndefined)(alias) && alias.length > 0;
|
|
250
|
+
},
|
|
251
|
+
get children() {
|
|
252
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.For, {
|
|
253
|
+
each: alias ?? [],
|
|
254
|
+
children: (alias$1) => (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocAlias, { children: alias$1 })
|
|
255
|
+
});
|
|
256
|
+
}
|
|
257
|
+
}),
|
|
258
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
259
|
+
get when() {
|
|
260
|
+
return (0, __stryke_type_checks_is_set_string.isSetString)(domain);
|
|
261
|
+
},
|
|
262
|
+
get children() {
|
|
263
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocDomain, { children: domain });
|
|
264
|
+
}
|
|
265
|
+
}),
|
|
266
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
267
|
+
get when() {
|
|
268
|
+
return !(0, __stryke_type_checks_is_undefined.isUndefined)(permission) && permission.length > 0;
|
|
269
|
+
},
|
|
270
|
+
get children() {
|
|
271
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.For, {
|
|
272
|
+
each: permission ?? [],
|
|
273
|
+
children: (permission$1) => (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocPermission, { children: permission$1 })
|
|
274
|
+
});
|
|
275
|
+
}
|
|
276
|
+
}),
|
|
277
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
278
|
+
when: readonly === true,
|
|
279
|
+
get children() {
|
|
280
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocReadonly, {});
|
|
281
|
+
}
|
|
282
|
+
}),
|
|
283
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
284
|
+
when: internal === true,
|
|
285
|
+
get children() {
|
|
286
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocInternal, {});
|
|
287
|
+
}
|
|
288
|
+
}),
|
|
289
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
290
|
+
when: ignore === true,
|
|
291
|
+
get children() {
|
|
292
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocIgnore, {});
|
|
293
|
+
}
|
|
294
|
+
}),
|
|
295
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
296
|
+
when: hidden === true,
|
|
297
|
+
get children() {
|
|
298
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocHidden, {});
|
|
299
|
+
}
|
|
300
|
+
}),
|
|
301
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
302
|
+
get when() {
|
|
303
|
+
return !(0, __stryke_type_checks_is_undefined.isUndefined)(defaultValue);
|
|
304
|
+
},
|
|
305
|
+
get children() {
|
|
306
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocDefaultValue, { value: defaultValue });
|
|
307
|
+
}
|
|
308
|
+
})
|
|
309
|
+
];
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Create a TSDoc parameter set off with `@param`.
|
|
313
|
+
*/
|
|
314
|
+
function TSDocParam(props) {
|
|
315
|
+
return [
|
|
316
|
+
"@param ",
|
|
317
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(TSDocParamName, {
|
|
318
|
+
get name() {
|
|
319
|
+
return props.name;
|
|
320
|
+
},
|
|
321
|
+
get optional() {
|
|
322
|
+
return props.optional;
|
|
323
|
+
},
|
|
324
|
+
get defaultValue() {
|
|
325
|
+
return props.defaultValue;
|
|
326
|
+
}
|
|
327
|
+
}),
|
|
328
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(TSDocParamDescription, { get children() {
|
|
329
|
+
return props.children;
|
|
330
|
+
} })
|
|
331
|
+
];
|
|
332
|
+
}
|
|
333
|
+
function TSDocParamName(props) {
|
|
334
|
+
return [
|
|
335
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
336
|
+
get when() {
|
|
337
|
+
return props.optional;
|
|
338
|
+
},
|
|
339
|
+
children: "["
|
|
340
|
+
}),
|
|
341
|
+
(0, __alloy_js_core_jsx_runtime.memo)(() => props.name),
|
|
342
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
343
|
+
get when() {
|
|
344
|
+
return Boolean(props.defaultValue);
|
|
345
|
+
},
|
|
346
|
+
get children() {
|
|
347
|
+
return ["=", (0, __alloy_js_core_jsx_runtime.memo)(() => props.defaultValue)];
|
|
348
|
+
}
|
|
349
|
+
}),
|
|
350
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
351
|
+
get when() {
|
|
352
|
+
return props.optional;
|
|
353
|
+
},
|
|
354
|
+
children: "]"
|
|
355
|
+
})
|
|
356
|
+
];
|
|
357
|
+
}
|
|
358
|
+
function TSDocParamDescription(props) {
|
|
359
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
360
|
+
get when() {
|
|
361
|
+
return Boolean(props.children);
|
|
362
|
+
},
|
|
363
|
+
get children() {
|
|
364
|
+
return [" - ", (0, __alloy_js_core_jsx_runtime.createIntrinsic)("align", {
|
|
365
|
+
width: 2,
|
|
366
|
+
get children() {
|
|
367
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Prose, { get children() {
|
|
368
|
+
return props.children;
|
|
369
|
+
} });
|
|
370
|
+
}
|
|
371
|
+
})];
|
|
372
|
+
}
|
|
373
|
+
});
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* Create a TSDoc `@returns` tag.
|
|
377
|
+
*/
|
|
378
|
+
function TSDocReturns(props) {
|
|
379
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(props, { tag: "returns" }));
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* Create a TSDoc `@throws` tag.
|
|
383
|
+
*/
|
|
384
|
+
function TSDocThrows(props) {
|
|
385
|
+
return (0, __alloy_js_core_jsx_runtime.createComponent)(TSDocTag, (0, __alloy_js_core_jsx_runtime.mergeProps)(props, { tag: "throws" }));
|
|
386
|
+
}
|
|
387
|
+
/**
|
|
388
|
+
* Generates a TSDoc `@module` tag for the given module name.
|
|
389
|
+
*/
|
|
390
|
+
function TSDocModule(props) {
|
|
391
|
+
const [{ children, name, prefix }] = (0, __alloy_js_core.splitProps)(props, [
|
|
392
|
+
"children",
|
|
393
|
+
"name",
|
|
394
|
+
"prefix"
|
|
395
|
+
]);
|
|
396
|
+
const context = require_context.usePowerlines();
|
|
397
|
+
return [
|
|
398
|
+
"/**",
|
|
399
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("align", {
|
|
400
|
+
string: " * ",
|
|
401
|
+
get children() {
|
|
402
|
+
return [
|
|
403
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
404
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.Show, {
|
|
405
|
+
get when() {
|
|
406
|
+
return Boolean(children);
|
|
407
|
+
},
|
|
408
|
+
get children() {
|
|
409
|
+
return [
|
|
410
|
+
(0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_core.List, {
|
|
411
|
+
hardline: true,
|
|
412
|
+
get children() {
|
|
413
|
+
return (0, __alloy_js_core.childrenArray)(() => children);
|
|
414
|
+
}
|
|
415
|
+
}),
|
|
416
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
417
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {})
|
|
418
|
+
];
|
|
419
|
+
}
|
|
420
|
+
}),
|
|
421
|
+
"@module ",
|
|
422
|
+
(0, __alloy_js_core_jsx_runtime.memo)(() => prefix || context?.config.output.builtinPrefix),
|
|
423
|
+
":",
|
|
424
|
+
name
|
|
425
|
+
];
|
|
426
|
+
}
|
|
427
|
+
}),
|
|
428
|
+
(0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
|
|
429
|
+
` */`
|
|
430
|
+
];
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
//#endregion
|
|
434
|
+
exports.TSDoc = TSDoc;
|
|
435
|
+
exports.TSDocAttributesTags = TSDocAttributesTags;
|
|
436
|
+
exports.TSDocExample = TSDocExample;
|
|
437
|
+
exports.TSDocLink = TSDocLink;
|
|
438
|
+
exports.TSDocModule = TSDocModule;
|
|
439
|
+
exports.TSDocParam = TSDocParam;
|
|
440
|
+
exports.TSDocRemarks = TSDocRemarks;
|
|
441
|
+
exports.TSDocReturns = TSDocReturns;
|
|
442
|
+
exports.TSDocThrows = TSDocThrows;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ComponentProps } from "../../types/components.cjs";
|
|
2
|
+
import { Children } from "@alloy-js/core";
|
|
3
|
+
|
|
4
|
+
//#region ../plugin-alloy/src/typescript/components/tsdoc.d.ts
|
|
5
|
+
|
|
6
|
+
interface TSDocModuleProps extends ComponentProps {
|
|
7
|
+
/**
|
|
8
|
+
* the prefix for the builtin module name
|
|
9
|
+
*
|
|
10
|
+
* @defaultValue "storm"
|
|
11
|
+
*/
|
|
12
|
+
prefix?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The name of the module
|
|
15
|
+
*
|
|
16
|
+
* @remarks
|
|
17
|
+
* This will be used in the `@module` tag as well as the import path for the module, e.g. `storm:<name>`.
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```ts
|
|
21
|
+
* import { MyModule } from "storm:my-module";
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
name: Children;
|
|
25
|
+
}
|
|
26
|
+
//#endregion
|
|
27
|
+
export { TSDocModuleProps };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComponentProps } from "../../types/components.mjs";
|
|
2
|
+
import { Children } from "@alloy-js/core";
|
|
3
|
+
import "@alloy-js/typescript";
|
|
4
|
+
|
|
5
|
+
//#region ../plugin-alloy/src/typescript/components/tsdoc.d.ts
|
|
6
|
+
|
|
7
|
+
interface TSDocModuleProps extends ComponentProps {
|
|
8
|
+
/**
|
|
9
|
+
* the prefix for the builtin module name
|
|
10
|
+
*
|
|
11
|
+
* @defaultValue "storm"
|
|
12
|
+
*/
|
|
13
|
+
prefix?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The name of the module
|
|
16
|
+
*
|
|
17
|
+
* @remarks
|
|
18
|
+
* This will be used in the `@module` tag as well as the import path for the module, e.g. `storm:<name>`.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```ts
|
|
22
|
+
* import { MyModule } from "storm:my-module";
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
name: Children;
|
|
26
|
+
}
|
|
27
|
+
//#endregion
|
|
28
|
+
export { TSDocModuleProps };
|