export type ADMIN = 'ADMIN';
export type VIEWER = 'VIEWER';
export type EDITOR = 'EDITOR';

export type ROLES = ADMIN | VIEWER | EDITOR;
