Interfaces
QueryResult
Interface which represents the state of a query.
export interface QueryResult<T> {
loading: boolean;
error: any;
data: T;
}
Last updated
Was this helpful?
Interface which represents the state of a query.
export interface QueryResult<T> {
loading: boolean;
error: any;
data: T;
}
Last updated
Was this helpful?