Interface Records<T>

Wrapper for Fate data to provide a consistent interface for responses containing multiple records.

interface Records<T> {
    recordCount: number;
    records: T[];
}

Type Parameters

  • T

Properties

Properties

recordCount: number
records: T[]