UNPKG

matrix-js-sdk

Version:
12 lines 357 B
import { AuthDict, IAuthData } from "../interactive-auth"; /** * Helper type to represent HTTP request body for a UIA enabled endpoint */ export type UIARequest<T> = T & { auth?: AuthDict; }; /** * Helper type to represent HTTP response body for a UIA enabled endpoint */ export type UIAResponse<T> = T | IAuthData; //# sourceMappingURL=uia.d.ts.map