UNPKG
strapi-plugin-webp-converter
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.0
A Strapi plugin that converts images to WebP format.
dnlnwk.de
dnlnwk/strapi-plugin-webp-converter
strapi-plugin-webp-converter
/
dist
/
server
/
src
/
middlewares
/
index.d.ts
10 lines
(9 loc)
•
302 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="koa" />
declare
const
_default
: {
convertToWebp
:
(
{ config }: { config:
any
; }, { strapi }: { strapi:
import
(
"@strapi/types/dist/core"
).Service; }
) =>
(
ctx
:
import
(
"koa"
).
Context
,
next
:
import
(
"koa"
).
Next
) =>
Promise
<
void
>; };
export
default
_default;