UNPKG

@fly/cdn

Version:
11 lines (10 loc) 269 B
/** * @module Middleware */ import { FetchFunction } from "../fetch"; export interface InjectHTMLOptions { targetTag: string; html: string; } /** @ignore */ export declare function injectHTML(fetch: FetchFunction, options?: InjectHTMLOptions): FetchFunction;