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' { declare module '@peertube/http-signature' {
import { IncomingMessage, ClientRequest } from 'node:http'; import type { IncomingMessage, ClientRequest } from 'node:http';
interface ISignature { interface ISignature {
keyId: string; keyId: string;

View file

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

View file

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

View file

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