Joachim Van Herwegen a4f2b3995c feat: add additional supported interfaces
This includes the relevant auth headers and a simplification of several others.
2020-05-25 11:27:23 +02:00

10 lines
201 B
TypeScript

/**
* A data interface indicating which permissions are allowed (based on the context).
*/
export interface PermissionSet {
read: boolean;
append: boolean;
write: boolean;
delete: boolean;
}