refactoring

This commit is contained in:
2023-08-19 13:19:32 +02:00
parent 1a323c560f
commit 41cf5e73c6
4 changed files with 55 additions and 3 deletions

View File

@ -18,8 +18,8 @@ export class Sound {
return this;
}
frequency = (value: number): this => {
this.values['frequency'] = value
freq = (value: number): this => {
this.values['freq'] = value
return this;
}