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.

26 lines
402 B
TypeScript

export interface Channel {
originalIndex?: number
name: string
url: string
description: string
creator: string
isCustom?: boolean
}
export interface SoundEffect {
id: string
name: string
icon: any
file: string
isCustom?: boolean
isYoutube?: boolean
}
export interface CustomSoundEffect {
id: string
name: string
file: string
isCustom?: boolean
isYoutube?: boolean
}