UNPKG

fhirclient-pkce

Version:

JavaScript client for Fast Healthcare Interoperability Resources

13 lines (12 loc) 499 B
/// <reference types="node" /> import { IncomingMessage, ServerResponse } from "http"; import { fhirclient } from "../types"; declare type storageFactory = (options?: Record<string, any>) => fhirclient.Storage; declare function smart(request: IncomingMessage, response: ServerResponse, storage?: fhirclient.Storage | storageFactory): fhirclient.SMART; declare namespace smart { var AbortController: { new (): AbortController; prototype: AbortController; }; } export = smart;