normalizing whitespace in comments

This commit is contained in:
Yotam Mann 2019-09-14 16:39:18 -04:00
parent 829a7ebd2c
commit 261a5f4c3b
92 changed files with 840 additions and 839 deletions

View file

@ -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,

View file

@ -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.

View file

@ -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>> {