Context: {
    assert: ((o) => void);
    is: ((o) => o is Context);
    validate: ValidateFunction<Context>;
    get errors(): undefined | ErrorObject<string, Record<string, any>, unknown>[];
    get schema(): AnySchema;
}

Type declaration

  • Readonly assert: ((o) => void)
      • (o): void
      • Parameters

        • o: unknown

        Returns void

  • Readonly is: ((o) => o is Context)
  • Readonly validate: ValidateFunction<Context>
  • get errors(): undefined | ErrorObject<string, Record<string, any>, unknown>[]
  • get schema(): AnySchema

Generated using TypeDoc