import type { Action } from './Action.js'; import type { Constraint } from './Constraint.js'; import type { Duty } from './Duty.js'; export type Permission = { action?: Action; assignee?: string; assigner?: string; constraints?: Array; duties?: Array; target?: string; edctype?: string; uid?: string; };