This commit is contained in:
syuilo 2022-09-20 05:36:51 +09:00
parent 567c550120
commit 4a7bec4e57
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
declare module '@peertube/http-signature' {
import { IncomingMessage, ClientRequest } from 'node:http';
import type { IncomingMessage, ClientRequest } from 'node:http';
interface ISignature {
keyId: string;

View File

@ -1,5 +1,5 @@
declare module 'koa-json-body' {
import { Middleware } from 'koa';
import type { Middleware } from 'koa';
interface IKoaJsonBodyOptions {
strict: boolean;

View File

@ -1,5 +1,5 @@
declare module 'koa-slow' {
import { Middleware } from 'koa';
import type { Middleware } from 'koa';
interface ISlowOptions {
url?: RegExp;

View File

@ -1,5 +1,5 @@
declare module 'probe-image-size' {
import { ReadStream } from 'node:fs';
import type { ReadStream } from 'node:fs';
type ProbeOptions = {
retries: 1;