Files
app/ts_interfaces/data/loint-reception.role.ts
T
2024-09-29 13:56:38 +02:00

14 lines
265 B
TypeScript

import * as plugins from '../loint-reception.plugins.js';
/**
* a role describes a
*/
export interface IRole {
id: string;
data: {
userId: string;
organizationId: string;
role: 'owner' | 'admin' | 'editor' | 'guest' | 'viewer' | 'outlaw';
};
}