UNPKG

graphdb-workbench

Version:
15 lines (14 loc) 446 B
import { Model } from '../common'; import { AuthorityList } from './authority-list'; import { AppSettings } from './app-settings'; /** * Represents an authenticated user in the system */ export declare class AuthenticatedUser extends Model<AuthenticatedUser> { external: boolean; username: string; password: string; authorities: AuthorityList; appSettings: AppSettings; constructor(data?: Partial<AuthenticatedUser>); }