-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypings.d.ts
44 lines (38 loc) · 1.06 KB
/
typings.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/// <reference path="src/lib/typings.d.ts" />
//declare module "*";
//
// declare module "html-minifier" {
// export function minify (value: any, options: HtmlMinifierConfig): string;
// }
//
// // @ts-ignore
// declare module "livereload" {
// export function createServer (config: any): any;
// }
//
// // @ts-ignore
// declare module "recursive-readdir-sync" {
// export default function readdir(path: string): string[];
// }
//
// // @ts-ignore
// declare module "@rollup/pluginutils" {
// export function createFilter(include: (string | RegExp)[] | string | RegExp | null, exclude: (string | RegExp)[] | string | RegExp | null): ((id: string) => boolean);
// }
//
//
// // @ts-ignore
// declare module "workbox-build" {
// export function generateSW (config: WorkboxConfig): void;
// export function injectManifest (config: WorkboxConfig): void;
// }
//
// // @ts-ignore
// declare module "brotli" {
// export function compress(config: any): any;
// }
//
// // @ts-ignore
// declare module "targz" {
// export function compress(config: any, err: any): any;
// }