markuno_lib 1.2.146 → 1.2.150
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/bin/markcad.js +1 -1
- package/bin/marked.js +1 -1
- package/bin/markuno.js +1 -1
- package/package.json +1 -1
- package/types/markcad.d.ts +402 -402
- package/types/markuno.d.ts +9 -2
package/types/markuno.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export class Ambiente {
|
|
|
24
24
|
sqcache: {};
|
|
25
25
|
varianti: {};
|
|
26
26
|
varelenco: {};
|
|
27
|
+
typos: {};
|
|
27
28
|
macroelenco: {};
|
|
28
29
|
scripts: {};
|
|
29
30
|
setimgpreview(t: any, e: any): void;
|
|
@@ -197,6 +198,7 @@ export class Variante {
|
|
|
197
198
|
firstvalid(t: any, e?: any): any;
|
|
198
199
|
resetfilter(): void;
|
|
199
200
|
validkeys(): string[];
|
|
201
|
+
limitaevo(t: any): void;
|
|
200
202
|
limitfiltra(t: any): void;
|
|
201
203
|
limita(t: any, e: any): {}[] | this;
|
|
202
204
|
loadContentExtended(t: any): Promise<void>;
|
|
@@ -376,10 +378,15 @@ declare const k: ({
|
|
|
376
378
|
folder: string;
|
|
377
379
|
})[];
|
|
378
380
|
declare const w: string[];
|
|
379
|
-
declare const y: {
|
|
381
|
+
declare const y: ({
|
|
380
382
|
cod: string;
|
|
381
383
|
des: string;
|
|
382
|
-
|
|
384
|
+
base?: undefined;
|
|
385
|
+
} | {
|
|
386
|
+
cod: string;
|
|
387
|
+
des: string;
|
|
388
|
+
base: boolean;
|
|
389
|
+
})[];
|
|
383
390
|
export function tk(): number;
|
|
384
391
|
export function toCadPars(t: any): {};
|
|
385
392
|
export function toJson(t: any): string;
|