mirror of https://github.com/btahir/next-beats
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
337 B
TypeScript
23 lines
337 B
TypeScript
export interface Channel {
|
|
originalIndex?: number
|
|
name: string
|
|
url: string
|
|
description: string
|
|
creator: string
|
|
isCustom?: boolean
|
|
}
|
|
|
|
export interface SoundEffect {
|
|
id: string
|
|
name: string
|
|
file: string
|
|
icon: any
|
|
isCustom?: boolean
|
|
}
|
|
|
|
export interface CustomSoundEffect {
|
|
id: string
|
|
name: string
|
|
file: string
|
|
}
|