mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 18:04:43 -05:00
* Converted from Asphyxia-Public-Route * Enable `resolveJsonModule` in `tsconfig.json` * WebUI for change name and title.
19 lines
280 B
TypeScript
19 lines
280 B
TypeScript
export interface PlayerInfo {
|
|
collection: 'playerinfo',
|
|
|
|
pluginVer: Number;
|
|
|
|
id: number;
|
|
version: string,
|
|
name: string;
|
|
title: string;
|
|
|
|
card?: {
|
|
id: number;
|
|
position: number[];
|
|
scale: number[];
|
|
rotation: number;
|
|
}[];
|
|
|
|
// TODO: Add Board things.
|
|
} |