mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 09:54:43 -05:00
12 lines
162 B
TypeScript
12 lines
162 B
TypeScript
export interface Mix {
|
|
collection: 'mix';
|
|
|
|
id: number;
|
|
code: string;
|
|
name: string;
|
|
creator: string;
|
|
param: string;
|
|
jacket: number;
|
|
tag: number;
|
|
}
|