lint
This commit is contained in:
parent
567c550120
commit
4a7bec4e57
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue