@fangzhongya/vue-archive 0.1.6 → 0.1.8
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/node/index.cjs +8 -1
- package/dist/node/index.d.cts +1 -1
- package/dist/node/index.d.ts +1 -1
- package/dist/node/index.js +8 -1
- package/dist/packages/components/compo/index.cjs +1 -1
- package/dist/packages/components/compo/index.js +21 -21
- package/dist/packages/components/use/code.d.ts +0 -5
- package/dist/packages/node/index.d.ts +1 -1
- package/dist/packages/utils/annotat.d.ts +37 -0
- package/package.json +1 -1
package/dist/node/index.cjs
CHANGED
|
@@ -4290,7 +4290,7 @@ function notesFilter(notes) {
|
|
|
4290
4290
|
}
|
|
4291
4291
|
}
|
|
4292
4292
|
});
|
|
4293
|
-
return notesObj;
|
|
4293
|
+
return JSON.parse(JSON.stringify(notesObj));
|
|
4294
4294
|
}
|
|
4295
4295
|
function getNotes2(key) {
|
|
4296
4296
|
return new Promise((resolve2) => {
|
|
@@ -4408,6 +4408,7 @@ var tslot = [
|
|
|
4408
4408
|
|
|
4409
4409
|
// packages/node/index.ts
|
|
4410
4410
|
var Fang;
|
|
4411
|
+
var annotat = {};
|
|
4411
4412
|
function h3(div, sx, v) {
|
|
4412
4413
|
if (isArray(v)) {
|
|
4413
4414
|
v = v.join("");
|
|
@@ -4589,6 +4590,10 @@ async function getCompoData(value) {
|
|
|
4589
4590
|
const arr = [];
|
|
4590
4591
|
arr.push("# " + getName(value));
|
|
4591
4592
|
await getNotes2(value.key).then((obj2) => {
|
|
4593
|
+
annotat[value.key] = {
|
|
4594
|
+
key: value,
|
|
4595
|
+
value: obj2
|
|
4596
|
+
};
|
|
4592
4597
|
let { titles: titles2, propss, slots, emitss, exposes } = obj2;
|
|
4593
4598
|
const dom = setHtml(
|
|
4594
4599
|
"div",
|
|
@@ -4694,6 +4699,7 @@ function getlistDom(arr, t, list) {
|
|
|
4694
4699
|
return arrs;
|
|
4695
4700
|
}
|
|
4696
4701
|
async function nodeInit(c, callback) {
|
|
4702
|
+
annotat = {};
|
|
4697
4703
|
configObj = userConfig(c);
|
|
4698
4704
|
configObj._callback_ = callback;
|
|
4699
4705
|
if (typeof c.setHtml === "function") {
|
|
@@ -4705,6 +4711,7 @@ async function nodeInit(c, callback) {
|
|
|
4705
4711
|
const element = comps[index];
|
|
4706
4712
|
await getCompoData(element);
|
|
4707
4713
|
}
|
|
4714
|
+
return annotat;
|
|
4708
4715
|
}
|
|
4709
4716
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4710
4717
|
0 && (module.exports = {
|
package/dist/node/index.d.cts
CHANGED
|
@@ -143,6 +143,6 @@ interface NodeConfig extends Config {
|
|
|
143
143
|
[key: string]: any;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<
|
|
146
|
+
declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<Record<string, any>>;
|
|
147
147
|
|
|
148
148
|
export { type ComponentsObj, type TextObj, nodeInit };
|
package/dist/node/index.d.ts
CHANGED
|
@@ -143,6 +143,6 @@ interface NodeConfig extends Config {
|
|
|
143
143
|
[key: string]: any;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<
|
|
146
|
+
declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<Record<string, any>>;
|
|
147
147
|
|
|
148
148
|
export { type ComponentsObj, type TextObj, nodeInit };
|
package/dist/node/index.js
CHANGED
|
@@ -4272,7 +4272,7 @@ function notesFilter(notes) {
|
|
|
4272
4272
|
}
|
|
4273
4273
|
}
|
|
4274
4274
|
});
|
|
4275
|
-
return notesObj;
|
|
4275
|
+
return JSON.parse(JSON.stringify(notesObj));
|
|
4276
4276
|
}
|
|
4277
4277
|
function getNotes2(key) {
|
|
4278
4278
|
return new Promise((resolve2) => {
|
|
@@ -4390,6 +4390,7 @@ var tslot = [
|
|
|
4390
4390
|
|
|
4391
4391
|
// packages/node/index.ts
|
|
4392
4392
|
var Fang;
|
|
4393
|
+
var annotat = {};
|
|
4393
4394
|
function h3(div, sx, v) {
|
|
4394
4395
|
if (isArray(v)) {
|
|
4395
4396
|
v = v.join("");
|
|
@@ -4571,6 +4572,10 @@ async function getCompoData(value) {
|
|
|
4571
4572
|
const arr = [];
|
|
4572
4573
|
arr.push("# " + getName(value));
|
|
4573
4574
|
await getNotes2(value.key).then((obj2) => {
|
|
4575
|
+
annotat[value.key] = {
|
|
4576
|
+
key: value,
|
|
4577
|
+
value: obj2
|
|
4578
|
+
};
|
|
4574
4579
|
let { titles: titles2, propss, slots, emitss, exposes } = obj2;
|
|
4575
4580
|
const dom = setHtml(
|
|
4576
4581
|
"div",
|
|
@@ -4676,6 +4681,7 @@ function getlistDom(arr, t, list) {
|
|
|
4676
4681
|
return arrs;
|
|
4677
4682
|
}
|
|
4678
4683
|
async function nodeInit(c, callback) {
|
|
4684
|
+
annotat = {};
|
|
4679
4685
|
configObj = userConfig(c);
|
|
4680
4686
|
configObj._callback_ = callback;
|
|
4681
4687
|
if (typeof c.setHtml === "function") {
|
|
@@ -4687,6 +4693,7 @@ async function nodeInit(c, callback) {
|
|
|
4687
4693
|
const element = comps[index];
|
|
4688
4694
|
await getCompoData(element);
|
|
4689
4695
|
}
|
|
4696
|
+
return annotat;
|
|
4690
4697
|
}
|
|
4691
4698
|
export {
|
|
4692
4699
|
nodeInit
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("../../utils/index.cjs");require("@fangzhongya/utils/basic/object/mergeObject");require("@fangzhongya/utils/html/getVueText");require("@fangzhongya/utils/basic/array/toggleArray");require("@fangzhongya/utils/name/humpToLine");require("@fangzhongya/utils/name/lineToLargeHump");require("@fangzhongya/utils/basic/string/appearNum");require("@fangzhongya/utils/basic/string/firstLower");require("@fangzhongya/utils/basic/array/duplicateRemoval");require("@fangzhongya/utils/basic/array/asyncMergeArray");require("@fangzhongya/utils/basic/string/firstUpper");require("@fangzhongya/utils/urls/getSuffix");require("@fangzhongya/utils/basic/array/replaceAfter");require("@fangzhongya/utils/judge/matchsStart");require("@fangzhongya/utils/judge/matchsEnd");const a=require("../../utils/props.cjs"),p={titles:[],propss:[],slots:[],emitss:[],exposes:[]};function x(e,s){let t=e.charAt(0),l=[['"','"'],["'","'"],["`","`"],["(",")"],["{","}"],["[","]"]];const r=l.map(o=>o[0]);let i=r.indexOf(t);if(i!=-1){let o=[t];for(let n=1;n<e.length;n++){if(t=e[n],i=r.indexOf(t),i!=-1)i>2?o.push(t):o[o.length-1]===t?o.pop():o.push(t);else{let c=!1;for(let f of l)if(t===f[1]&&o[o.length-1]===f[0]){c=!0;break}c&&o.pop()}if(o.length===0)return s&&e[n+1]===" ",e.substring(0,n+1)}}else return s?e.substring(0,e.indexOf(" ")):e}function E(e){delete e.problems,delete e.source;let s=e.tag,t=e.name,l=e.description,r=e.default,i="",o="";if(s=="default")t=t.trim(),t=x(t)||t;else if(s=="selectable")t=t.trim();else{if(t.includes("=")){const f=t.split("=");t=f[0];const h=f[1]+" "+l,b=x(h,!0);b?(r=b,l=h.replace(b,"")):r=e.default||f[1]||""}const c=/\s*\((.*)\)\s/gi.exec(l);c&&c.length>0&&(i=c[1],l=l.replace(c[0],""))}return t.endsWith("*")&&(o="*",t=t.substring(0,t.length-1)),e.name=t,e.required=o,e.default=r||"",e.description=l,e.selectable=i,e}function O(e){let s=["title","text","author","date"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),g(l),t.arr.forEach(r=>{d(r.key,r.value)})}function g(e){p.titles.push(e)}function
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("../../utils/index.cjs");require("@fangzhongya/utils/basic/object/mergeObject");require("@fangzhongya/utils/html/getVueText");require("@fangzhongya/utils/basic/array/toggleArray");require("@fangzhongya/utils/name/humpToLine");require("@fangzhongya/utils/name/lineToLargeHump");require("@fangzhongya/utils/basic/string/appearNum");require("@fangzhongya/utils/basic/string/firstLower");require("@fangzhongya/utils/basic/array/duplicateRemoval");require("@fangzhongya/utils/basic/array/asyncMergeArray");require("@fangzhongya/utils/basic/string/firstUpper");require("@fangzhongya/utils/urls/getSuffix");require("@fangzhongya/utils/basic/array/replaceAfter");require("@fangzhongya/utils/judge/matchsStart");require("@fangzhongya/utils/judge/matchsEnd");const a=require("../../utils/props.cjs"),p={titles:[],propss:[],slots:[],emitss:[],exposes:[]};function x(e,s){let t=e.charAt(0),l=[['"','"'],["'","'"],["`","`"],["(",")"],["{","}"],["[","]"]];const r=l.map(o=>o[0]);let i=r.indexOf(t);if(i!=-1){let o=[t];for(let n=1;n<e.length;n++){if(t=e[n],i=r.indexOf(t),i!=-1)i>2?o.push(t):o[o.length-1]===t?o.pop():o.push(t);else{let c=!1;for(let f of l)if(t===f[1]&&o[o.length-1]===f[0]){c=!0;break}c&&o.pop()}if(o.length===0)return s&&e[n+1]===" ",e.substring(0,n+1)}}else return s?e.substring(0,e.indexOf(" ")):e}function E(e){delete e.problems,delete e.source;let s=e.tag,t=e.name,l=e.description,r=e.default,i="",o="";if(s=="default")t=t.trim(),t=x(t)||t;else if(s=="selectable")t=t.trim();else{if(t.includes("=")){const f=t.split("=");t=f[0];const h=f[1]+" "+l,b=x(h,!0);b?(r=b,l=h.replace(b,"")):r=e.default||f[1]||""}const c=/\s*\((.*)\)\s/gi.exec(l);c&&c.length>0&&(i=c[1],l=l.replace(c[0],""))}return t.endsWith("*")&&(o="*",t=t.substring(0,t.length-1)),e.name=t,e.required=o,e.default=r||"",e.description=l,e.selectable=i,e}function O(e){let s=["title","text","author","date"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),g(l),t.arr.forEach(r=>{d(r.key,r.value)})}function g(e){p.titles.push(e)}function y(e){let s=["props","name","type","default","required","selectable","description","descriptions","return"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"props"),t.arr.forEach(r=>{d(r.key,r.value)})}function T(e){let s=["slot","name","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"slot"),t.arr.forEach(r=>{d(r.key,r.value)})}function k(e){let s=["emits","name","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"emits"),t.arr.forEach(r=>{d(r.key,r.value)})}function S(e){let s=["expose","name","type","return","selectable","description","descriptions"],t=m(e),l={};s.forEach(r=>{l[r]=t.obj[r]}),u(l,"expose"),t.arr.forEach(r=>{d(r.key,r.value)})}function u(e,s){const t=p[s+"name"]||[],l=e.name??e[s]?.name,r=t.indexOf(l);r>=0&&(p[s+"s"].splice(r,1),t.splice(r,1)),p[s+"s"].push(e),t.push(l),p[s+"name"]=t}function N(){Object.keys(p).forEach(e=>{p[e]=[]})}function m(e,s){const t={descriptions:e?.description||""},l=[];return e?.tags&&e.tags?.forEach(r=>{let i=r.tag,o=E(r);if(!t.hasOwnProperty(i))t[i]=o;else{const n={};n[i]=o,l.push({key:i,value:n})}}),{arr:l,obj:t}}function d(e,s){switch(e){case"title":return g(s),!0;case"text":return g(s),!0;case"props":return u(s,"props"),!0;case"slot":return u(s,"slot"),!0;case"emits":return u(s,"emits"),!0;case"expose":return u(s,"expose"),!0;default:return!1}}function j(e,s){switch(e){case"title":return O(s),!0;case"props":return y(s),!0;case"slot":return T(s),!0;case"emits":return k(s),!0;case"expose":return S(s),!0;default:return!1}}function w(e){return N(),e?.forEach(s=>{let t=s?.tags||[],l=t?.length||0;if(l>0)for(let r=0;r<l;r++){const i=t[r]||{};if(j(i.tag,s))break}}),JSON.parse(JSON.stringify(p))}function P(e){let s=q.getTextNotes(e);return w(s)}const F=[{label:"属性名",prop:"name",formatter:a.props.name},{label:"说明",prop:"description",formatter:a.props.description},{label:"类型",prop:"type",formatter:a.props.type},{label:"可选值",prop:"selectable",formatter:a.props.selectable},{label:"默认值",prop:"default",formatter:a.props.default},{label:"必传",prop:"required",formatter:a.props.required},{label:"方法返回值",prop:"return",formatter:a.props.return}],J=[{label:"事件名",prop:"name",formatter:a.emits.name},{label:"说明",prop:"description",formatter:a.emits.description},{label:"回调参数",prop:"selectable",formatter:a.emits.selectable}],v=[{label:"方法名",prop:"name",formatter:a.expose.name},{label:"说明",prop:"description",formatter:a.expose.description},{label:"参数",prop:"selectable",formatter:a.expose.selectable},{label:"返回值",prop:"return",formatter(e){return a.expose.return(e)||e.expose.default||""}},{label:"类型",prop:"type",formatter(e){return a.expose.type(e)||"function"}}],z=[{label:"插槽名",prop:"name",formatter:a.slot.name},{label:"说明",prop:"description",formatter:a.slot.description},{label:"作用域参数",prop:"selectable",formatter:a.slot.selectable}];exports.getNotesText=P;exports.temits=J;exports.texpose=v;exports.tprops=F;exports.tslot=z;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getTextNotes as
|
|
1
|
+
import { getTextNotes as y } from "../../utils/index.js";
|
|
2
2
|
import "@fangzhongya/utils/basic/object/mergeObject";
|
|
3
3
|
import "@fangzhongya/utils/html/getVueText";
|
|
4
4
|
import "@fangzhongya/utils/basic/array/toggleArray";
|
|
@@ -52,7 +52,7 @@ function k(e, l) {
|
|
|
52
52
|
} else
|
|
53
53
|
return l ? e.substring(0, e.indexOf(" ")) : e;
|
|
54
54
|
}
|
|
55
|
-
function
|
|
55
|
+
function T(e) {
|
|
56
56
|
delete e.problems, delete e.source;
|
|
57
57
|
let l = e.tag, t = e.name, s = e.description, r = e.default, a = "", o = "";
|
|
58
58
|
if (l == "default")
|
|
@@ -71,7 +71,7 @@ function q(e) {
|
|
|
71
71
|
}
|
|
72
72
|
return t.endsWith("*") && (o = "*", t = t.substring(0, t.length - 1)), e.name = t, e.required = o, e.default = r || "", e.description = s, e.selectable = a, e;
|
|
73
73
|
}
|
|
74
|
-
function
|
|
74
|
+
function q(e) {
|
|
75
75
|
let l = [
|
|
76
76
|
"title",
|
|
77
77
|
// 'name',
|
|
@@ -90,7 +90,7 @@ function y(e) {
|
|
|
90
90
|
function E(e) {
|
|
91
91
|
n.titles.push(e);
|
|
92
92
|
}
|
|
93
|
-
function
|
|
93
|
+
function N(e) {
|
|
94
94
|
let l = [
|
|
95
95
|
"props",
|
|
96
96
|
"name",
|
|
@@ -108,7 +108,7 @@ function j(e) {
|
|
|
108
108
|
b(r.key, r.value);
|
|
109
109
|
});
|
|
110
110
|
}
|
|
111
|
-
function
|
|
111
|
+
function S(e) {
|
|
112
112
|
let l = ["slot", "name", "selectable", "description", "descriptions"], t = d(e), s = {};
|
|
113
113
|
l.forEach((r) => {
|
|
114
114
|
s[r] = t.obj[r];
|
|
@@ -116,7 +116,7 @@ function w(e) {
|
|
|
116
116
|
b(r.key, r.value);
|
|
117
117
|
});
|
|
118
118
|
}
|
|
119
|
-
function
|
|
119
|
+
function j(e) {
|
|
120
120
|
let l = ["emits", "name", "selectable", "description", "descriptions"], t = d(e), s = {};
|
|
121
121
|
l.forEach((r) => {
|
|
122
122
|
s[r] = t.obj[r];
|
|
@@ -124,7 +124,7 @@ function F(e) {
|
|
|
124
124
|
b(r.key, r.value);
|
|
125
125
|
});
|
|
126
126
|
}
|
|
127
|
-
function
|
|
127
|
+
function w(e) {
|
|
128
128
|
let l = [
|
|
129
129
|
"expose",
|
|
130
130
|
"name",
|
|
@@ -144,7 +144,7 @@ function p(e, l) {
|
|
|
144
144
|
const t = n[l + "name"] || [], s = e.name ?? e[l]?.name, r = t.indexOf(s);
|
|
145
145
|
r >= 0 && (n[l + "s"].splice(r, 1), t.splice(r, 1)), n[l + "s"].push(e), t.push(s), n[l + "name"] = t;
|
|
146
146
|
}
|
|
147
|
-
function
|
|
147
|
+
function F() {
|
|
148
148
|
Object.keys(n).forEach((e) => {
|
|
149
149
|
n[e] = [];
|
|
150
150
|
});
|
|
@@ -154,7 +154,7 @@ function d(e, l) {
|
|
|
154
154
|
descriptions: e?.description || ""
|
|
155
155
|
}, s = [];
|
|
156
156
|
return e?.tags && e.tags?.forEach((r) => {
|
|
157
|
-
let a = r.tag, o =
|
|
157
|
+
let a = r.tag, o = T(r);
|
|
158
158
|
if (!t.hasOwnProperty(a))
|
|
159
159
|
t[a] = o;
|
|
160
160
|
else {
|
|
@@ -187,36 +187,36 @@ function b(e, l) {
|
|
|
187
187
|
return !1;
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
-
function
|
|
190
|
+
function J(e, l) {
|
|
191
191
|
switch (e) {
|
|
192
192
|
case "title":
|
|
193
|
-
return
|
|
193
|
+
return q(l), !0;
|
|
194
194
|
case "props":
|
|
195
|
-
return
|
|
195
|
+
return N(l), !0;
|
|
196
196
|
case "slot":
|
|
197
|
-
return
|
|
197
|
+
return S(l), !0;
|
|
198
198
|
case "emits":
|
|
199
|
-
return
|
|
199
|
+
return j(l), !0;
|
|
200
200
|
case "expose":
|
|
201
|
-
return
|
|
201
|
+
return w(l), !0;
|
|
202
202
|
default:
|
|
203
203
|
return !1;
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
|
-
function
|
|
207
|
-
return
|
|
206
|
+
function P(e) {
|
|
207
|
+
return F(), e?.forEach((l) => {
|
|
208
208
|
let t = l?.tags || [], s = t?.length || 0;
|
|
209
209
|
if (s > 0)
|
|
210
210
|
for (let r = 0; r < s; r++) {
|
|
211
211
|
const a = t[r] || {};
|
|
212
|
-
if (
|
|
212
|
+
if (J(a.tag, l))
|
|
213
213
|
break;
|
|
214
214
|
}
|
|
215
|
-
}), n;
|
|
215
|
+
}), JSON.parse(JSON.stringify(n));
|
|
216
216
|
}
|
|
217
217
|
function U(e) {
|
|
218
|
-
let l =
|
|
219
|
-
return
|
|
218
|
+
let l = y(e);
|
|
219
|
+
return P(l);
|
|
220
220
|
}
|
|
221
221
|
const V = [
|
|
222
222
|
{
|
|
@@ -16,8 +16,3 @@ export declare function getSpecType(val: Spec): {
|
|
|
16
16
|
};
|
|
17
17
|
export declare function getDefaultValue(obj: Spec, is?: boolean): any;
|
|
18
18
|
export {};
|
|
19
|
-
fined;
|
|
20
|
-
}>, {
|
|
21
|
-
html: string;
|
|
22
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
23
|
-
export default _default;
|
|
@@ -4,4 +4,4 @@ interface NodeConfig extends Config {
|
|
|
4
4
|
[key: string]: any;
|
|
5
5
|
}
|
|
6
6
|
export type { TextObj, ComponentsObj };
|
|
7
|
-
export declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<
|
|
7
|
+
export declare function nodeInit(c: NodeConfig, callback: (mls: ComponentsObj[]) => void): Promise<Record<string, any>>;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
type Spec = {
|
|
2
|
+
tag: string;
|
|
3
|
+
name: string;
|
|
4
|
+
default?: string;
|
|
5
|
+
type: string;
|
|
6
|
+
optional: boolean;
|
|
7
|
+
description: string;
|
|
8
|
+
selectable: string;
|
|
9
|
+
problems?: unknown;
|
|
10
|
+
source?: unknown;
|
|
11
|
+
} & {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
interface Block {
|
|
15
|
+
description: string;
|
|
16
|
+
tags: Spec[];
|
|
17
|
+
source: unknown;
|
|
18
|
+
problems: unknown;
|
|
19
|
+
}
|
|
20
|
+
interface Specs {
|
|
21
|
+
[key: string]: Spec;
|
|
22
|
+
}
|
|
23
|
+
interface Descriptions {
|
|
24
|
+
descriptions: string;
|
|
25
|
+
}
|
|
26
|
+
type SpecObjs = Descriptions & Specs;
|
|
27
|
+
type NotesObj = {
|
|
28
|
+
titles: SpecObjs[];
|
|
29
|
+
propss: SpecObjs[];
|
|
30
|
+
slots: SpecObjs[];
|
|
31
|
+
emitss: SpecObjs[];
|
|
32
|
+
exposes: SpecObjs[];
|
|
33
|
+
[key: string]: any[];
|
|
34
|
+
};
|
|
35
|
+
export declare function getTextNotes(text: string): Block[] | undefined;
|
|
36
|
+
export declare function getNotesText(text: string): NotesObj;
|
|
37
|
+
export {};
|