UNPKG
@fly/cdn
Version:
latest (0.5.2)
prerelease (0.6.0-0)
0.6.0-0
0.5.2
0.5.0
0.5.0-0
0.4.0
0.4.0-1
0.4.0-0
0.3.3
0.3.2
Fly's TypeScript CDN
github.com/superfly/cdn
superfly/cdn
@fly/cdn
/
lib
/
middleware
/
inject-html.d.ts
11 lines
(10 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** *
@module
Middleware */
import { FetchFunction }
from
"../fetch"
; export
interface
InjectHTMLOptions
{ targetTag:
string
; html:
string
; }
/**
@ignore
*/
export
declare
function
injectHTML
(
fetch: FetchFunction, options?: InjectHTMLOptions
):
FetchFunction
;