import Gecobject from './Gecobject'; /** * The certification levels. */ export declare enum CertLevel { GameMaster = "Master", Administrator = "Admin" } /** * An identified user of the ĞecoĞvidanto application. */ export default interface User extends Gecobject { /** * The email of the user, used as connection identifier. */ email: string; /** * The name or pseudonyme of the user. */ name: string; /** * The certification level of the user. */ level: CertLevel; /** * The user account public key. */ account?: string; }