UNPKG

@openmrs/esm-api

Version:

The javascript module for interacting with the OpenMRS API

10 lines (7 loc) 208 B
import type { Session } from './user-resource'; export interface FetchResponse<T = any> extends Response { data: T; } export interface LoggedInUserFetchResponse extends FetchResponse { data: Session; }