mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 16:42:48 +00:00
22 lines
387 B
TypeScript
22 lines
387 B
TypeScript
import { IUser } from './user';
|
|
|
|
export type SoundListType = 'sounds' | 'clips' | 'favorites';
|
|
|
|
export interface SoundType {
|
|
extension: string;
|
|
name: string;
|
|
prefix?: string;
|
|
}
|
|
|
|
// sound from database
|
|
export interface ISound {
|
|
created_at: string;
|
|
deleted_at?: string;
|
|
extension: string;
|
|
id: number;
|
|
name: string;
|
|
updated_at: string;
|
|
user: IUser;
|
|
user_id: string;
|
|
}
|