mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 16:17:58 +00:00
normalizing whitespace in comments
This commit is contained in:
parent
829a7ebd2c
commit
261a5f4c3b
92 changed files with 840 additions and 839 deletions
|
@ -26,7 +26,10 @@ export type ToneAudioNodeOptions = ToneWithContextOptions;
|
|||
export abstract class ToneAudioNode<Options extends ToneAudioNodeOptions = ToneAudioNodeOptions>
|
||||
extends ToneWithContext<Options> {
|
||||
|
||||
abstract name = "AudioNode";
|
||||
/**
|
||||
* The name of the class
|
||||
*/
|
||||
abstract readonly name: string = "AudioNode";
|
||||
|
||||
/**
|
||||
* The input node or nodes. If the object is a source,
|
||||
|
|
|
@ -74,7 +74,6 @@ export type TimeObject = {
|
|||
// tslint:disable: max-line-length
|
||||
/**
|
||||
* Time can be described in a number of ways. Read more [Time](https://github.com/Tonejs/Tone.js/wiki/Time).
|
||||
*
|
||||
* * Numbers, which will be taken literally as the time (in seconds).
|
||||
* * Notation, ("4n", "8t") describes time in BPM and time signature relative values.
|
||||
* * TransportTime, ("4:3:2") will also provide tempo and time signature relative times in the form BARS:QUARTERS:SIXTEENTHS.
|
||||
|
|
|
@ -13,7 +13,6 @@ export interface ToneConstantSourceOptions<Type> extends OneShotSourceOptions {
|
|||
/**
|
||||
* Wrapper around the native fire-and-forget ConstantSource.
|
||||
* Adds the ability to reschedule the stop method.
|
||||
* ***[[Oscillator]] is better for most use-cases***
|
||||
*/
|
||||
export class ToneConstantSource<Type extends Unit = number> extends OneShotSource<ToneConstantSourceOptions<Type>> {
|
||||
|
||||
|
|
Loading…
Reference in a new issue