Interface which represents the state of a query.
export interface QueryResult<T> { loading: boolean; error: any; data: T; }
Last updated 3 years ago