mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 08:17:07 +00:00
updating name string
This commit is contained in:
parent
4b0827bf43
commit
b1b85206f4
3 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ export type FrequencyUnit = TimeBaseUnit | "midi";
|
|||
*/
|
||||
export class FrequencyClass<Type extends number = Hertz> extends TimeClass<Type, FrequencyUnit> {
|
||||
|
||||
readonly name: string = "FrequencyClass";
|
||||
readonly name: string = "Frequency";
|
||||
|
||||
readonly defaultUnits: FrequencyUnit = "hz";
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import { Seconds, Ticks } from "./Units";
|
|||
*/
|
||||
export class TicksClass extends TransportTimeClass<Ticks> {
|
||||
|
||||
readonly name: string = "TicksClass";
|
||||
readonly name: string = "Ticks";
|
||||
|
||||
readonly defaultUnits: TimeBaseUnit = "i";
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ import { TimeBaseUnit, TimeValue } from "./TimeBase";
|
|||
*/
|
||||
export class TransportTimeClass<Type extends Seconds | Ticks = Seconds> extends TimeClass<Type> {
|
||||
|
||||
readonly name: string = "TransportTimeClass";
|
||||
readonly name: string = "TransportTime";
|
||||
|
||||
/**
|
||||
* Return the current time in whichever context is relevant
|
||||
|
|
Loading…
Reference in a new issue