Interface Policy<Sub, Act, Obj>

interface Policy<Sub, Act, Obj> {
    action: Act;
    field?: string[];
    filter?: string[];
    location?: string[];
    object: Obj;
    subject: Sub;
    time?: Time[];
}

Type Parameters

  • Sub = string
  • Act = string
  • Obj = string

Properties

action: Act
field?: string[]
filter?: string[]
location?: string[]
object: Obj
subject: Sub
time?: Time[]

Generated using TypeDoc