mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-27 04:14:53 -05:00
20 lines
311 B
TypeScript
20 lines
311 B
TypeScript
export interface shop_data {
|
|
collection: "shop_data";
|
|
|
|
opname: string;
|
|
pid: number;
|
|
cls_opt: number;
|
|
}
|
|
|
|
export interface convention_data {
|
|
collection: "shop_convention";
|
|
|
|
version: number;
|
|
|
|
music_0: number;
|
|
music_1: number;
|
|
music_2: number;
|
|
music_3: number;
|
|
valid: boolean;
|
|
}
|