Type alias Options<T>

Options<T>: {
    class?: T;
    limit?: number;
    offset?: number;
    return?: "entity" | "guid" | "count";
    reverse?: boolean;
    skipAc?: boolean;
    skipCache?: boolean;
    sort?: "cdate" | "mdate" | string;
    source?: string;
}

Type Parameters

Type declaration

  • Optional class?: T
  • Optional limit?: number
  • Optional offset?: number
  • Optional return?: "entity" | "guid" | "count"
  • Optional reverse?: boolean
  • Optional skipAc?: boolean
  • Optional skipCache?: boolean
  • Optional sort?: "cdate" | "mdate" | string
  • Optional source?: string

Generated using TypeDoc