Type alias LogListParams

LogListParams: {
    filter?: Partial<Log>;
    sort?: { [ key in keyof Partial<Pick<Log, "date">>]: Sort };
    limit?: number;
}

Type declaration

  • Optional filter?: Partial<Log>
  • Optional sort?: { [ key in keyof Partial<Pick<Log, "date">>]: Sort }
  • Optional limit?: number

Generated using TypeDoc