Type alias FindMiddlewareOutput<T>

FindMiddlewareOutput<T>: {
    operation: "find";
    params: FindParams<T>;
    records: PartialDeep<T["model"]>[];
    totalCount?: number;
}

Type Parameters

Type declaration

  • operation: "find"
  • params: FindParams<T>
  • records: PartialDeep<T["model"]>[]
  • Optional totalCount?: number

Generated using TypeDoc