NGSuite: API: SerialGuardInfo

An info used by SerialGuard and SerialGuardFn that contains the guard entries and providers.

interface SerialGuardInfo {
  entries: Chain<GuardEntry>[];
  providers?: StaticProvider[];
}

Properties

Property Description
entries: Chain<GuardEntry>[] Contains a list of Classes that implement the GuardEntry interface. These are guard entries that will be called serially.
providers?: StaticProvider[] Contains a list of providers that can be injected into each guard entry.