Interface Check<T>

interface Check<T> {
    conditions: ((context) => boolean[]);
    message: string;
}

Type Parameters

  • T

Properties

Properties

conditions: ((context) => boolean[])

Type declaration

    • (context): boolean[]
    • Parameters

      • context: T

      Returns boolean[]

message: string