tone 14.8.39 → 14.8.40
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/Tone/core/type/TransportTime.ts +3 -3
- package/Tone/instrument/PolySynth.ts +1 -1
- package/Tone/version.ts +1 -1
- package/build/Tone.js +1 -1
- package/build/Tone.js.map +1 -1
- package/build/esm/core/type/TransportTime.d.ts +3 -3
- package/build/esm/core/type/TransportTime.js +3 -3
- package/build/esm/instrument/PolySynth.d.ts +1 -1
- package/build/esm/instrument/PolySynth.js +1 -1
- package/build/esm/version.js +1 -1
- package/docs/tone.json +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { Seconds, Ticks } from "../type/Units";
|
|
|
2
2
|
import { TimeClass } from "./Time";
|
|
3
3
|
import { TimeBaseUnit, TimeValue } from "./TimeBase";
|
|
4
4
|
/**
|
|
5
|
-
* TransportTime is a
|
|
5
|
+
* TransportTime is a time along the Transport's
|
|
6
6
|
* timeline. It is similar to Tone.Time, but instead of evaluating
|
|
7
7
|
* against the AudioContext's clock, it is evaluated against
|
|
8
8
|
* the Transport's position. See [TransportTime wiki](https://github.com/Tonejs/Tone.js/wiki/TransportTime).
|
|
@@ -16,8 +16,8 @@ export declare class TransportTimeClass<Type extends Seconds | Ticks = Seconds>
|
|
|
16
16
|
protected _now(): Type;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
|
-
* TransportTime is a
|
|
20
|
-
* timeline. It is similar to
|
|
19
|
+
* TransportTime is a time along the Transport's
|
|
20
|
+
* timeline. It is similar to Tone.Time, but instead of evaluating
|
|
21
21
|
* against the AudioContext's clock, it is evaluated against
|
|
22
22
|
* the Transport's position. See [TransportTime wiki](https://github.com/Tonejs/Tone.js/wiki/TransportTime).
|
|
23
23
|
* @category Unit
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getContext } from "../Global";
|
|
2
2
|
import { TimeClass } from "./Time";
|
|
3
3
|
/**
|
|
4
|
-
* TransportTime is a
|
|
4
|
+
* TransportTime is a time along the Transport's
|
|
5
5
|
* timeline. It is similar to Tone.Time, but instead of evaluating
|
|
6
6
|
* against the AudioContext's clock, it is evaluated against
|
|
7
7
|
* the Transport's position. See [TransportTime wiki](https://github.com/Tonejs/Tone.js/wiki/TransportTime).
|
|
@@ -20,8 +20,8 @@ export class TransportTimeClass extends TimeClass {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
* TransportTime is a
|
|
24
|
-
* timeline. It is similar to
|
|
23
|
+
* TransportTime is a time along the Transport's
|
|
24
|
+
* timeline. It is similar to Tone.Time, but instead of evaluating
|
|
25
25
|
* against the AudioContext's clock, it is evaluated against
|
|
26
26
|
* the Transport's position. See [TransportTime wiki](https://github.com/Tonejs/Tone.js/wiki/TransportTime).
|
|
27
27
|
* @category Unit
|
|
@@ -24,7 +24,7 @@ export interface PolySynthOptions<Voice> extends InstrumentOptions {
|
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* PolySynth handles voice creation and allocation for any
|
|
27
|
-
* instruments passed in as the second
|
|
27
|
+
* instruments passed in as the second parameter. PolySynth is
|
|
28
28
|
* not a synthesizer by itself, it merely manages voices of
|
|
29
29
|
* one of the other types of synths, allowing any of the
|
|
30
30
|
* monophonic synthesizers to be polyphonic.
|
|
@@ -7,7 +7,7 @@ import { Synth } from "./Synth";
|
|
|
7
7
|
import { assert, warn } from "../core/util/Debug";
|
|
8
8
|
/**
|
|
9
9
|
* PolySynth handles voice creation and allocation for any
|
|
10
|
-
* instruments passed in as the second
|
|
10
|
+
* instruments passed in as the second parameter. PolySynth is
|
|
11
11
|
* not a synthesizer by itself, it merely manages voices of
|
|
12
12
|
* one of the other types of synths, allowing any of the
|
|
13
13
|
* monophonic synthesizers to be polyphonic.
|
package/build/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = "14.8.
|
|
1
|
+
export const version = "14.8.40";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|