mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-22 22:27:56 +03: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;
|
|
}
|