@appscode/design-system
Version:
A design system for Appscode websites and dashboards made using Bulma
23 lines (21 loc) • 405 B
text/typescript
export interface User {
id: number;
login: string;
full_name: string;
email: string;
avatar_url: string;
language: string;
is_admin: boolean;
last_login: string;
created: string;
type: 0 | 1 | 2;
active: boolean;
prohibit_login: boolean;
location: string;
website: string;
description: string;
username: string;
}
export interface Organization extends User {
type: 1;
}