forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
3,728 additions
and
3,328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module 'ansi-to-html'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
declare module 'fswatcher-child' { | ||
import { EventEmitter } from 'events'; | ||
|
||
export interface FSWatcherOptions { | ||
useFsEvents?: boolean; | ||
ignoreInitial?: boolean; | ||
ignorePermissionErrors?: boolean; | ||
ignored?: RegExp; | ||
} | ||
|
||
export default class FSWatcher extends EventEmitter { | ||
constructor(options?: FSWatcherOptions); | ||
_closePath(dir: string): void; | ||
add(dir: string): void; | ||
unwatch(dir: string): void; | ||
close(): void; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
declare module 'node-libs-browser' { | ||
export const assert: string; | ||
export const buffer: string; | ||
export const child_process: null; | ||
export const cluster: null; | ||
export const console: string; | ||
export const constants: string; | ||
export const crypto: string; | ||
export const dgram: null; | ||
export const dns: null; | ||
export const domain: string; | ||
export const events: string; | ||
export const fs: null; | ||
export const http: string; | ||
export const https: string; | ||
export const module: null; | ||
export const net: null; | ||
export const os: string; | ||
export const path: string; | ||
export const punycode: string; | ||
export const process: string; | ||
export const querystring: string; | ||
export const readline: null; | ||
export const repl: null; | ||
export const stream: string; | ||
export const _stream_duplex: string; | ||
export const _stream_passthrough: string; | ||
export const _stream_readable: string; | ||
export const _stream_transform: string; | ||
export const _stream_writable: string; | ||
export const string_decoder: string; | ||
export const sys: string; | ||
export const timers: string; | ||
export const tls: null; | ||
export const tty: string; | ||
export const url: string; | ||
export const util: string; | ||
export const vm: string; | ||
export const zlib: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module 'posthtml'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.