make QueueFilters interface
This commit is contained in:
parent
fb864c08ac
commit
c925ca442e
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ export type FiltersName = keyof QueueFilters;
|
||||||
/**
|
/**
|
||||||
* @typedef {AudioFilters} QueueFilters
|
* @typedef {AudioFilters} QueueFilters
|
||||||
*/
|
*/
|
||||||
export type QueueFilters = {
|
export interface QueueFilters {
|
||||||
bassboost_low?: boolean;
|
bassboost_low?: boolean;
|
||||||
bassboost?: boolean;
|
bassboost?: boolean;
|
||||||
bassboost_high?: boolean;
|
bassboost_high?: boolean;
|
||||||
|
@ -45,7 +45,7 @@ export type QueueFilters = {
|
||||||
fadein?: boolean;
|
fadein?: boolean;
|
||||||
dim?: boolean;
|
dim?: boolean;
|
||||||
earrape?: boolean;
|
earrape?: boolean;
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The track source:
|
* The track source:
|
||||||
|
|
Loading…
Reference in a new issue