mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
10 lines
201 B
TypeScript
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;
|
|
}
|