UNPKG

226 BTypeScriptView Raw
1export interface UserJson {
2 accountId: string;
3 displayName: string;
4}
5export default class User {
6 private readonly data;
7 constructor(data: UserJson);
8 getAccountId(): string;
9 getDisplayName(): string;
10}