UNPKG

gatsby

Version:
9 lines (8 loc) 336 B
import { IAdapterManifestEntry } from "./adapter/types"; export interface IAPIResponse { browser: Record<string, any>; node: Record<string, any>; ssr: Record<string, any>; } export declare const getLatestAPIs: () => Promise<IAPIResponse>; export declare const getLatestAdapters: () => Promise<Array<IAdapterManifestEntry>>;