mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 08:17:07 +00:00
adding categories for docs
This commit is contained in:
parent
1dd208c1ea
commit
4d5b63d97e
2 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,7 @@ export interface PowOptions extends ToneAudioNodeOptions {
|
|||
* var pow = new Pow(2);
|
||||
* var sig = new Signal(0.5).connect(pow);
|
||||
* //output of pow is 0.25.
|
||||
* @category Signal
|
||||
*/
|
||||
export class Pow extends SignalOperator<PowOptions> {
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ export interface UserMediaOptions extends ToneAudioNodeOptions {
|
|||
* motu.open().then(() => {
|
||||
* //promise resolves when input is available
|
||||
* });
|
||||
* @category Source
|
||||
*/
|
||||
|
||||
export class UserMedia extends ToneAudioNode<UserMediaOptions> {
|
||||
|
|
Loading…
Reference in a new issue