@logue/reverb 1.3.13 → 1.3.15
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/Meta.d.ts +0 -1
- package/dist/NoiseType.d.ts +0 -1
- package/dist/Reverb.d.ts +0 -1
- package/dist/Reverb.es.js +7 -9
- package/dist/Reverb.iife.js +2 -2
- package/dist/Reverb.umd.js +2 -2
- package/dist/interfaces/MetaInterface.d.ts +0 -1
- package/dist/interfaces/OptionInterface.d.ts +0 -1
- package/package.json +30 -25
- package/dist/Meta.d.ts.map +0 -1
- package/dist/NoiseType.d.ts.map +0 -1
- package/dist/Reverb.d.ts.map +0 -1
- package/dist/interfaces/MetaInterface.d.ts.map +0 -1
- package/dist/interfaces/OptionInterface.d.ts.map +0 -1
package/dist/Meta.d.ts
CHANGED
package/dist/NoiseType.d.ts
CHANGED
package/dist/Reverb.d.ts
CHANGED
package/dist/Reverb.es.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2025 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.15
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -13,8 +13,8 @@ import { white as c, violet as m, red as f, pink as b, green as N, blue as g } f
|
|
|
13
13
|
import { take as v } from "@thi.ng/transducers";
|
|
14
14
|
import { SYSTEM as w } from "@thi.ng/random";
|
|
15
15
|
const d = {
|
|
16
|
-
version: "1.3.
|
|
17
|
-
date: "2025-
|
|
16
|
+
version: "1.3.15",
|
|
17
|
+
date: "2025-03-02T14:58:09.789Z"
|
|
18
18
|
}, o = {
|
|
19
19
|
/** Blue noise */
|
|
20
20
|
blue: "blue",
|
|
@@ -27,9 +27,7 @@ const d = {
|
|
|
27
27
|
/** Red noise */
|
|
28
28
|
red: "red",
|
|
29
29
|
/** Violet noise */
|
|
30
|
-
violet: "violet"
|
|
31
|
-
/** White noise */
|
|
32
|
-
white: "white"
|
|
30
|
+
violet: "violet"
|
|
33
31
|
}, y = {
|
|
34
32
|
noise: "white",
|
|
35
33
|
scale: 1,
|
|
@@ -251,12 +249,12 @@ class s {
|
|
|
251
249
|
}
|
|
252
250
|
/** Utility function for building an impulse response from the module parameters. */
|
|
253
251
|
buildImpulse() {
|
|
254
|
-
const e = this.ctx.sampleRate, t = Math.max(e * this.options.time, 1), n = e * this.options.delay, a = this.ctx.createBuffer(2, t, e),
|
|
252
|
+
const e = this.ctx.sampleRate, t = Math.max(e * this.options.time, 1), n = e * this.options.delay, a = this.ctx.createBuffer(2, t, e), l = new Float32Array(t), h = new Float32Array(t), p = this.getNoise(t), u = this.getNoise(t);
|
|
255
253
|
for (let i = 0; i < t; i++) {
|
|
256
254
|
let r = 0;
|
|
257
|
-
i < n ? (
|
|
255
|
+
i < n ? (l[i] = 0, h[i] = 0, r = this.options.reverse ?? !1 ? t - (i - n) : i - n) : r = this.options.reverse ?? !1 ? t - i : i, l[i] = (p[i] ?? 0) * (1 - r / t) ** this.options.decay, h[i] = (u[i] ?? 0) * (1 - r / t) ** this.options.decay;
|
|
258
256
|
}
|
|
259
|
-
a.getChannelData(0).set(
|
|
257
|
+
a.getChannelData(0).set(l), a.getChannelData(1).set(h), this.convolverNode.buffer = a;
|
|
260
258
|
}
|
|
261
259
|
/**
|
|
262
260
|
* Noise source
|
package/dist/Reverb.iife.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2025 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.15
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
var Reverb=function(h,n,p,f){"use strict";const u={version:"1.3.
|
|
12
|
+
var Reverb=function(h,n,p,f){"use strict";const u={version:"1.3.15",date:"2025-03-02T14:58:09.789Z"},o={blue:"blue",brown:"red",green:"green",pink:"pink",red:"red",violet:"violet"},m={noise:"white",scale:1,peaks:2,randomAlgorithm:f.SYSTEM,decay:2,delay:0,reverse:!1,time:2,filterType:"allpass",filterFreq:2200,filterQ:1,mix:.5,once:!1};class s{static version=u.version;static build=u.date;ctx;wetGainNode;dryGainNode;filterNode;convolverNode;outputNode;options;isConnected;noise=n.white;constructor(e,t){this.ctx=e,this.options=Object.assign(m,t),this.wetGainNode=this.ctx.createGain(),this.dryGainNode=this.ctx.createGain(),this.filterNode=this.ctx.createBiquadFilter(),this.convolverNode=this.ctx.createConvolver(),this.outputNode=this.ctx.createGain(),this.isConnected=!1,this.filterType(this.options.filterType),this.setNoise(this.options.noise),this.buildImpulse(),this.mix(this.options.mix)}connect(e){return this.isConnected&&this.options.once?(this.isConnected=!1,this.outputNode):(this.convolverNode.connect(this.filterNode),this.filterNode.connect(this.wetGainNode),e.connect(this.convolverNode),e.connect(this.dryGainNode).connect(this.outputNode),e.connect(this.wetGainNode).connect(this.outputNode),this.isConnected=!0,this.outputNode)}disconnect(e){return this.isConnected&&(this.convolverNode.disconnect(this.filterNode),this.filterNode.disconnect(this.wetGainNode)),this.isConnected=!1,e}mix(e){if(!s.inRange(e,0,1))throw new RangeError("[Reverb.js] Dry/Wet ratio must be between 0 to 1.");this.options.mix=e,this.dryGainNode.gain.value=1-this.options.mix,this.wetGainNode.gain.value=this.options.mix}time(e){if(!s.inRange(e,1,50))throw new RangeError("[Reverb.js] Time length of inpulse response must be less than 50sec.");this.options.time=e,this.buildImpulse()}decay(e){if(!s.inRange(e,0,100))throw new RangeError("[Reverb.js] Inpulse Response decay level must be less than 100.");this.options.decay=e,this.buildImpulse()}delay(e){if(!s.inRange(e,0,100))throw new RangeError("[Reverb.js] Inpulse Response delay time must be less than 100.");this.options.delay=e,this.buildImpulse()}reverse(e){this.options.reverse=e,this.buildImpulse()}filterType(e="allpass"){this.filterNode.type=this.options.filterType=e}filterFreq(e){if(!s.inRange(e,20,2e4))throw new RangeError("[Reverb.js] Filter frequrncy must be between 20 and 20000.");this.options.filterFreq=e,this.filterNode.frequency.value=this.options.filterFreq}filterQ(e){if(!s.inRange(e,0,10))throw new RangeError("[Reverb.js] Filter Q value must be between 0 and 10.");this.options.filterQ=e,this.filterNode.Q.value=this.options.filterQ}peaks(e){this.options.peaks=e,this.buildImpulse()}scale(e){this.options.scale=e,this.buildImpulse()}randomAlgorithm(e){this.options.randomAlgorithm=e,this.buildImpulse()}setNoise(e){switch(this.options.noise=e,e){case o.blue:this.noise=n.blue;break;case o.green:this.noise=n.green;break;case o.pink:this.noise=n.pink;break;case o.red:case o.brown:this.noise=n.red;break;case o.violet:this.noise=n.violet;break;default:this.noise=n.white}this.buildImpulse()}setRandomAlgorythm(e){this.options.randomAlgorithm=e,this.buildImpulse()}static inRange(e,t,r){return(e-t)*(e-r)<=0}buildImpulse(){const e=this.ctx.sampleRate,t=Math.max(e*this.options.time,1),r=e*this.options.delay,l=this.ctx.createBuffer(2,t,e),c=new Float32Array(t),d=new Float32Array(t),b=this.getNoise(t),v=this.getNoise(t);for(let i=0;i<t;i++){let a=0;i<r?(c[i]=0,d[i]=0,a=this.options.reverse??!1?t-(i-r):i-r):a=this.options.reverse??!1?t-i:i,c[i]=(b[i]??0)*(1-a/t)**this.options.decay,d[i]=(v[i]??0)*(1-a/t)**this.options.decay}l.getChannelData(0).set(c),l.getChannelData(1).set(d),this.convolverNode.buffer=l}getNoise(e){return[...p.take(e,this.noise({bins:this.options.peaks,scale:this.options.scale,rnd:this.options.randomAlgorithm}))]}}return h.default=s,Object.defineProperty(h,"__esModule",{value:!0}),h}({},coloredNoise,transducers,random);
|
package/dist/Reverb.umd.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2025 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.15
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
(function(n,s){typeof exports=="object"&&typeof module<"u"?s(exports,require("@thi.ng/colored-noise"),require("@thi.ng/transducers"),require("@thi.ng/random")):typeof define=="function"&&define.amd?define(["exports","@thi.ng/colored-noise","@thi.ng/transducers","@thi.ng/random"],s):(n=typeof globalThis<"u"?globalThis:n||self,s(n.Reverb={},n.coloredNoise,n.transducers,n.random))})(this,function(n,s,p,f){"use strict";const u={version:"1.3.
|
|
12
|
+
(function(n,s){typeof exports=="object"&&typeof module<"u"?s(exports,require("@thi.ng/colored-noise"),require("@thi.ng/transducers"),require("@thi.ng/random")):typeof define=="function"&&define.amd?define(["exports","@thi.ng/colored-noise","@thi.ng/transducers","@thi.ng/random"],s):(n=typeof globalThis<"u"?globalThis:n||self,s(n.Reverb={},n.coloredNoise,n.transducers,n.random))})(this,function(n,s,p,f){"use strict";const u={version:"1.3.15",date:"2025-03-02T14:58:09.789Z"},r={blue:"blue",brown:"red",green:"green",pink:"pink",red:"red",violet:"violet"},m={noise:"white",scale:1,peaks:2,randomAlgorithm:f.SYSTEM,decay:2,delay:0,reverse:!1,time:2,filterType:"allpass",filterFreq:2200,filterQ:1,mix:.5,once:!1};class o{static version=u.version;static build=u.date;ctx;wetGainNode;dryGainNode;filterNode;convolverNode;outputNode;options;isConnected;noise=s.white;constructor(e,t){this.ctx=e,this.options=Object.assign(m,t),this.wetGainNode=this.ctx.createGain(),this.dryGainNode=this.ctx.createGain(),this.filterNode=this.ctx.createBiquadFilter(),this.convolverNode=this.ctx.createConvolver(),this.outputNode=this.ctx.createGain(),this.isConnected=!1,this.filterType(this.options.filterType),this.setNoise(this.options.noise),this.buildImpulse(),this.mix(this.options.mix)}connect(e){return this.isConnected&&this.options.once?(this.isConnected=!1,this.outputNode):(this.convolverNode.connect(this.filterNode),this.filterNode.connect(this.wetGainNode),e.connect(this.convolverNode),e.connect(this.dryGainNode).connect(this.outputNode),e.connect(this.wetGainNode).connect(this.outputNode),this.isConnected=!0,this.outputNode)}disconnect(e){return this.isConnected&&(this.convolverNode.disconnect(this.filterNode),this.filterNode.disconnect(this.wetGainNode)),this.isConnected=!1,e}mix(e){if(!o.inRange(e,0,1))throw new RangeError("[Reverb.js] Dry/Wet ratio must be between 0 to 1.");this.options.mix=e,this.dryGainNode.gain.value=1-this.options.mix,this.wetGainNode.gain.value=this.options.mix}time(e){if(!o.inRange(e,1,50))throw new RangeError("[Reverb.js] Time length of inpulse response must be less than 50sec.");this.options.time=e,this.buildImpulse()}decay(e){if(!o.inRange(e,0,100))throw new RangeError("[Reverb.js] Inpulse Response decay level must be less than 100.");this.options.decay=e,this.buildImpulse()}delay(e){if(!o.inRange(e,0,100))throw new RangeError("[Reverb.js] Inpulse Response delay time must be less than 100.");this.options.delay=e,this.buildImpulse()}reverse(e){this.options.reverse=e,this.buildImpulse()}filterType(e="allpass"){this.filterNode.type=this.options.filterType=e}filterFreq(e){if(!o.inRange(e,20,2e4))throw new RangeError("[Reverb.js] Filter frequrncy must be between 20 and 20000.");this.options.filterFreq=e,this.filterNode.frequency.value=this.options.filterFreq}filterQ(e){if(!o.inRange(e,0,10))throw new RangeError("[Reverb.js] Filter Q value must be between 0 and 10.");this.options.filterQ=e,this.filterNode.Q.value=this.options.filterQ}peaks(e){this.options.peaks=e,this.buildImpulse()}scale(e){this.options.scale=e,this.buildImpulse()}randomAlgorithm(e){this.options.randomAlgorithm=e,this.buildImpulse()}setNoise(e){switch(this.options.noise=e,e){case r.blue:this.noise=s.blue;break;case r.green:this.noise=s.green;break;case r.pink:this.noise=s.pink;break;case r.red:case r.brown:this.noise=s.red;break;case r.violet:this.noise=s.violet;break;default:this.noise=s.white}this.buildImpulse()}setRandomAlgorythm(e){this.options.randomAlgorithm=e,this.buildImpulse()}static inRange(e,t,h){return(e-t)*(e-h)<=0}buildImpulse(){const e=this.ctx.sampleRate,t=Math.max(e*this.options.time,1),h=e*this.options.delay,l=this.ctx.createBuffer(2,t,e),d=new Float32Array(t),c=new Float32Array(t),b=this.getNoise(t),g=this.getNoise(t);for(let i=0;i<t;i++){let a=0;i<h?(d[i]=0,c[i]=0,a=this.options.reverse??!1?t-(i-h):i-h):a=this.options.reverse??!1?t-i:i,d[i]=(b[i]??0)*(1-a/t)**this.options.decay,c[i]=(g[i]??0)*(1-a/t)**this.options.decay}l.getChannelData(0).set(d),l.getChannelData(1).set(c),this.convolverNode.buffer=l}getNoise(e){return[...p.take(e,this.noise({bins:this.options.peaks,scale:this.options.scale,rnd:this.options.randomAlgorithm}))]}}n.default=o,Object.defineProperty(n,"__esModule",{value:!0})});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@logue/reverb",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.15",
|
|
5
5
|
"description": "JavaScript Reverb effect class",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"webaudio",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"main": "dist/Reverb.umd.js",
|
|
31
31
|
"module": "dist/Reverb.es.js",
|
|
32
32
|
"browser": "dist/Reverb.iife.js",
|
|
33
|
-
"types": "dist/
|
|
33
|
+
"types": "dist/Reverb.d.ts",
|
|
34
34
|
"exports": {
|
|
35
35
|
".": {
|
|
36
36
|
"import": "./dist/Reverb.es.js",
|
|
37
|
-
"
|
|
37
|
+
"types": "./dist/Reverb.d.ts"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
|
-
"node": ">=22.0.
|
|
42
|
-
"pnpm": ">=
|
|
41
|
+
"node": ">=22.0.1",
|
|
42
|
+
"pnpm": ">=10.3.0"
|
|
43
43
|
},
|
|
44
|
-
"packageManager": "pnpm@
|
|
44
|
+
"packageManager": "pnpm@10.5.2",
|
|
45
45
|
"sideEffects": false,
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "vite",
|
|
@@ -57,39 +57,39 @@
|
|
|
57
57
|
"prepare": "husky"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@thi.ng/colored-noise": "^1.0.
|
|
61
|
-
"@thi.ng/random": "^4.1.
|
|
62
|
-
"@thi.ng/transducers": "^9.2.
|
|
60
|
+
"@thi.ng/colored-noise": "^1.0.94",
|
|
61
|
+
"@thi.ng/random": "^4.1.12",
|
|
62
|
+
"@thi.ng/transducers": "^9.2.21"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@eslint/js": "^9.
|
|
65
|
+
"@eslint/js": "^9.21.0",
|
|
66
66
|
"@tsconfig/node-lts": "^22.0.1",
|
|
67
|
-
"@types/node": "^22.
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
67
|
+
"@types/node": "^22.13.8",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
69
69
|
"bootstrap": "^5.3.3",
|
|
70
|
-
"eslint": "^9.
|
|
71
|
-
"eslint-config-prettier": "^
|
|
70
|
+
"eslint": "^9.21.0",
|
|
71
|
+
"eslint-config-prettier": "^10.0.2",
|
|
72
72
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
73
|
-
"eslint-import-resolver-typescript": "^3.
|
|
73
|
+
"eslint-import-resolver-typescript": "^3.8.3",
|
|
74
74
|
"eslint-plugin-html": "^8.1.2",
|
|
75
75
|
"eslint-plugin-import": "^2.31.0",
|
|
76
|
-
"eslint-plugin-n": "^17.
|
|
76
|
+
"eslint-plugin-n": "^17.16.1",
|
|
77
77
|
"eslint-plugin-promise": "^7.2.1",
|
|
78
78
|
"eslint-plugin-tsdoc": "^0.4.0",
|
|
79
79
|
"eslint-plugin-yaml": "^1.0.3",
|
|
80
|
-
"globals": "^
|
|
80
|
+
"globals": "^16.0.0",
|
|
81
81
|
"husky": "^9.1.7",
|
|
82
|
-
"lint-staged": "^15.3
|
|
82
|
+
"lint-staged": "^15.4.3",
|
|
83
83
|
"npm-run-all": "^4.1.5",
|
|
84
|
-
"prettier": "^3.
|
|
84
|
+
"prettier": "^3.5.2",
|
|
85
85
|
"rimraf": "^6.0.1",
|
|
86
|
-
"rollup-plugin-visualizer": "^5.
|
|
87
|
-
"typescript": "^5.
|
|
88
|
-
"typescript-eslint": "^8.
|
|
89
|
-
"vite": "^6.0
|
|
86
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
87
|
+
"typescript": "^5.8.2",
|
|
88
|
+
"typescript-eslint": "^8.25.0",
|
|
89
|
+
"vite": "^6.2.0",
|
|
90
90
|
"vite-plugin-banner": "^0.8.0",
|
|
91
|
-
"vite-plugin-checker": "^0.
|
|
92
|
-
"vite-plugin-dts": "^4.
|
|
91
|
+
"vite-plugin-checker": "^0.9.0",
|
|
92
|
+
"vite-plugin-dts": "^4.5.1"
|
|
93
93
|
},
|
|
94
94
|
"husky": {
|
|
95
95
|
"hooks": {
|
|
@@ -103,5 +103,10 @@
|
|
|
103
103
|
"resolutions": {
|
|
104
104
|
"json5": ">=2.2.3",
|
|
105
105
|
"yaml": ">=2.3.2"
|
|
106
|
+
},
|
|
107
|
+
"pnpm": {
|
|
108
|
+
"onlyBuiltDependencies": [
|
|
109
|
+
"esbuild"
|
|
110
|
+
]
|
|
106
111
|
}
|
|
107
112
|
}
|
package/dist/Meta.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Meta.d.ts","sourceRoot":"","sources":["../src/Meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,4BAA4B,CAAC;AAG1D,QAAA,MAAM,IAAI,EAAE,aAGX,CAAC;AACF,eAAe,IAAI,CAAC"}
|
package/dist/NoiseType.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NoiseType.d.ts","sourceRoot":"","sources":["../src/NoiseType.ts"],"names":[],"mappings":"AAAA,kDAAkD;AAClD,QAAA,MAAM,KAAK,EAAE,MAAM,CAAC,SAAS,EAAE,MAAM,CAe3B,CAAC;AAEX,iBAAiB;AACjB,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,OAAO,GACP,OAAO,GACP,MAAM,GACN,KAAK,GACL,QAAQ,GACR,OAAO,CAAC;AAEZ,YAAY;AACZ,eAAe,KAAK,CAAC"}
|
package/dist/Reverb.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Reverb.d.ts","sourceRoot":"","sources":["../src/Reverb.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,eAAe,MAAM,8BAA8B,CAAC;AAChE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAG5C,OAAc,EAAE,KAAK,SAAS,EAAE,MAAM,aAAa,CAAC;AAGpD;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,MAAM;IACzB,sBAAsB;IACtB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAgB;IAC/C,iBAAiB;IACjB,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAa;IAC1C,mBAAmB;IACnB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAe;IACnC,oCAAoC;IACpC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAW;IACvC,sCAAsC;IACtC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAW;IACvC,8BAA8B;IAC9B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAmB;IAC9C,qDAAqD;IACrD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgB;IAC9C,uBAAuB;IACvB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAW;IACtC,aAAa;IACb,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAkB;IAC1C,qBAAqB;IACrB,OAAO,CAAC,WAAW,CAAU;IAC7B,sBAAsB;IACtB,OAAO,CAAC,KAAK,CAEiC;IAE9C;;;;;OAKG;gBACS,GAAG,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,CAAC;IAoBhE;;;;OAIG;IACI,OAAO,CAAC,UAAU,EAAE,SAAS,GAAG,SAAS;IAsBhD;;;;OAIG;IACI,UAAU,CAAC,UAAU,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS;IAehE;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAU7B;;;;OAIG;IACI,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAahC;;;;OAIG;IACI,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAWjC;;;;OAIG;IACI,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAajC;;;;OAIG;IACI,OAAO,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAQtC;;;;OAIG;IACI,UAAU,CAAC,IAAI,GAAE,gBAA4B,GAAG,IAAI;IAK3D;;;;OAIG;IACI,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAWrC;;;;OAIG;IACI,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI;IAW/B;;;;OAIG;IACI,KAAK,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI;IAM7B;;;;OAIG;IACI,KAAK,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI;IAM7B;;;;OAIG;IACI,eAAe,CAAC,CAAC,EAAE,KAAK,GAAG,IAAI;IAMtC;;;;OAIG;IACI,QAAQ,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI;IA0BtC;;;;OAIG;IACI,kBAAkB,CAAC,SAAS,EAAE,KAAK,GAAG,IAAI;IAKjD;;;;;;OAMG;IACH,OAAO,CAAC,MAAM,CAAC,OAAO;IAItB,oFAAoF;IACpF,OAAO,CAAC,YAAY;IA+CpB;;;;OAIG;IACH,OAAO,CAAC,QAAQ;CAYjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MetaInterface.d.ts","sourceRoot":"","sources":["../../src/interfaces/MetaInterface.ts"],"names":[],"mappings":"AAAA,iCAAiC;AACjC,MAAM,CAAC,OAAO,WAAW,aAAa;IACpC,cAAc;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB;IACjB,IAAI,EAAE,MAAM,CAAC;CACd"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"OptionInterface.d.ts","sourceRoot":"","sources":["../../src/interfaces/OptionInterface.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAE5C,oBAAoB;AACpB,MAAM,CAAC,OAAO,WAAW,eAAe;IACtC;;;OAGG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB,4BAA4B;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,eAAe,EAAE,KAAK,CAAC;IACvB,YAAY;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,gDAAgD;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,UAAU,EAAE,MAAM,CAAC;IACnB,0CAA0C;IAC1C,OAAO,EAAE,MAAM,CAAC;IAChB,uCAAuC;IACvC,UAAU,EAAE,gBAAgB,CAAC;IAC7B,oBAAoB;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,kCAAkC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,8BAA8B;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,wDAAwD;IACxD,IAAI,EAAE,OAAO,CAAC;CACf;AAED,oBAAoB;AACpB,eAAO,MAAM,QAAQ,EAAE,eActB,CAAC"}
|