@@ -8,10 +8,6 @@ declare module 'cors' {
8
8
export = cors
9
9
}
10
10
11
- declare module 'selfsigned' {
12
- export function generate ( attrs : any , options : any , done ?: any ) : any
13
- }
14
-
15
11
declare module 'http-proxy' {
16
12
const proxy : any
17
13
export = proxy
@@ -27,18 +23,6 @@ declare module 'launch-editor-middleware' {
27
23
export = plugin
28
24
}
29
25
30
- declare module 'postcss-load-config' {
31
- import type { Plugin , ProcessOptions } from 'postcss'
32
- function load (
33
- inline : any ,
34
- root : string
35
- ) : Promise < {
36
- options : ProcessOptions
37
- plugins : Plugin [ ]
38
- } >
39
- export = load
40
- }
41
-
42
26
declare module 'postcss-import' {
43
27
import type { Plugin } from 'postcss'
44
28
const plugin : ( options : {
@@ -52,45 +36,6 @@ declare module 'postcss-import' {
52
36
export = plugin
53
37
}
54
38
55
- declare module 'postcss-modules' {
56
- import type { Plugin } from 'postcss'
57
- const plugin : ( options : any ) => Plugin
58
- export = plugin
59
- }
60
-
61
- declare module '@rollup/plugin-dynamic-import-vars' {
62
- import type { Plugin } from 'rollup'
63
- import type { BaseNode } from 'estree'
64
-
65
- interface Options {
66
- include ?: string | RegExp | ( string | RegExp ) [ ]
67
- exclude ?: string | RegExp | ( string | RegExp ) [ ]
68
- warnOnError ?: boolean
69
- }
70
-
71
- const p : ( o ?: Options ) => Plugin
72
- export default p
73
- export function dynamicImportToGlob (
74
- ast : BaseNode ,
75
- source : string
76
- ) : null | string
77
- }
78
-
79
- declare module 'rollup-plugin-web-worker-loader' {
80
- import type { Plugin } from 'rollup'
81
-
82
- interface Options {
83
- targetPlatform ?: string
84
- pattern ?: RegExp
85
- extensions ?: string [ ]
86
- sourcemap ?: boolean
87
- inline ?: boolean
88
- }
89
-
90
- const p : ( o ?: Options ) => Plugin
91
- export default p
92
- }
93
-
94
39
// LESS' types somewhat references this which doesn't make sense in Node,
95
40
// so we have to shim it
96
41
declare interface HTMLLinkElement { }
0 commit comments