mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
23 lines
339 B
TypeScript
23 lines
339 B
TypeScript
export interface profile {
|
|
collection: "profile";
|
|
|
|
refid: string;
|
|
id: number;
|
|
idstr: string;
|
|
name: string;
|
|
pid: number;
|
|
|
|
language: number;
|
|
total_pc: number;
|
|
total_kbd: number;
|
|
total_scr: number;
|
|
}
|
|
|
|
export const default_profile = {
|
|
language: -1,
|
|
|
|
total_pc: 0,
|
|
total_kbd: 0,
|
|
total_scr: 0,
|
|
}
|