blob: f48a06714319583637a15f41daae86e3f34cbd9f [file] [log] [blame]
// DO NOT EDIT. This file is automatically generated.
export interface Status {
email: EMail;
roles: Roles;
}
export type EMail = string;
export type Role = 'viewer' | 'editor' | 'admin' | 'bisecter' | '';
export type Roles = Role[] | null;