webpack/declarations.d.ts

264 lines
7.5 KiB
TypeScript
Raw Normal View History

2018-03-29 06:24:34 +02:00
declare module "*.json";
2018-03-25 18:07:41 +02:00
2018-03-30 02:15:49 +02:00
// Deprecated NodeJS API usages in Webpack
declare namespace NodeJS {
interface Process {
2018-04-05 19:44:15 +02:00
binding(internalModule: string): any;
2018-03-30 02:15:49 +02:00
}
2018-04-05 19:44:15 +02:00
}
2018-03-30 02:15:49 +02:00
declare module "neo-async" {
export interface Dictionary<T> {
[key: string]: T;
}
export type IterableCollection<T> = T[] | IterableIterator<T> | Dictionary<T>;
export interface ErrorCallback<T> {
(err?: T): void;
}
export interface AsyncBooleanResultCallback<E> {
(err?: E, truthValue?: boolean): void;
}
export interface AsyncResultCallback<T, E> {
(err?: E, result?: T): void;
}
export interface AsyncResultArrayCallback<T, E> {
(err?: E, results?: Array<T | undefined>): void;
}
export interface AsyncResultObjectCallback<T, E> {
(err: E | undefined, results: Dictionary<T | undefined>): void;
}
export interface AsyncFunction<T, E> {
(callback: (err?: E, result?: T) => void): void;
}
export interface AsyncFunctionEx<T, E> {
(callback: (err?: E, ...results: T[]) => void): void;
}
export interface AsyncIterator<T, E> {
(item: T, callback: ErrorCallback<E>): void;
}
export interface AsyncForEachOfIterator<T, E> {
(item: T, key: number | string, callback: ErrorCallback<E>): void;
}
export interface AsyncResultIterator<T, R, E> {
(item: T, callback: AsyncResultCallback<R, E>): void;
}
export interface AsyncMemoIterator<T, R, E> {
(memo: R | undefined, item: T, callback: AsyncResultCallback<R, E>): void;
}
export interface AsyncBooleanIterator<T, E> {
(item: T, callback: AsyncBooleanResultCallback<E>): void;
}
export interface AsyncWorker<T, E> {
(task: T, callback: ErrorCallback<E>): void;
}
export interface AsyncVoidFunction<E> {
(callback: ErrorCallback<E>): void;
}
export type AsyncAutoTasks<R extends Dictionary<any>, E> = {
2019-06-09 11:23:42 +02:00
[K in keyof R]: AsyncAutoTask<R[K], R, E>;
};
export type AsyncAutoTask<R1, R extends Dictionary<any>, E> =
| AsyncAutoTaskFunctionWithoutDependencies<R1, E>
| (keyof R | AsyncAutoTaskFunction<R1, R, E>)[];
export interface AsyncAutoTaskFunctionWithoutDependencies<R1, E> {
(cb: AsyncResultCallback<R1, E> | ErrorCallback<E>): void;
}
export interface AsyncAutoTaskFunction<R1, R extends Dictionary<any>, E> {
(results: R, cb: AsyncResultCallback<R1, E> | ErrorCallback<E>): void;
}
export function each<T, E>(
arr: IterableCollection<T>,
iterator: AsyncIterator<T, E>,
callback?: ErrorCallback<E>
): void;
2019-01-09 20:53:04 +01:00
export function eachLimit<T, E>(
arr: IterableCollection<T>,
limit: number,
iterator: AsyncIterator<T, E>,
callback?: ErrorCallback<E>
): void;
export function map<T, R, E>(
arr: T[] | IterableIterator<T>,
iterator: AsyncResultIterator<T, R, E>,
callback?: AsyncResultArrayCallback<R, E>
): void;
export function map<T, R, E>(
arr: Dictionary<T>,
iterator: AsyncResultIterator<T, R, E>,
callback?: AsyncResultArrayCallback<R, E>
): void;
export function parallel<T, E>(
tasks: Array<AsyncFunction<T, E>>,
callback?: AsyncResultArrayCallback<T, E>
): void;
export function parallel<T, E>(
tasks: Dictionary<AsyncFunction<T, E>>,
callback?: AsyncResultObjectCallback<T, E>
): void;
export const forEach: typeof each;
2019-01-09 20:53:04 +01:00
export const forEachLimit: typeof eachLimit;
}
2018-04-27 18:53:07 +02:00
// There are no typings for @webassemblyjs/ast
declare module "@webassemblyjs/ast" {
export function traverse(
ast: any,
2018-05-09 17:40:38 +02:00
visitor: {
ModuleImport?: (p: NodePath<ModuleImport>) => void;
ModuleExport?: (p: NodePath<ModuleExport>) => void;
Start?: (p: NodePath<Start>) => void;
Global?: (p: NodePath<Global>) => void;
2018-05-09 17:40:38 +02:00
}
2018-05-11 14:13:06 +02:00
): void;
2018-05-09 17:40:38 +02:00
export class NodePath<T> {
node: T;
2018-04-27 18:53:07 +02:00
}
2018-05-09 17:40:38 +02:00
export class Node {}
2018-04-27 18:53:07 +02:00
export class Identifier extends Node {
value: string;
}
2018-05-09 17:40:38 +02:00
export class Start extends Node {
index: Identifier;
}
2018-05-11 14:13:06 +02:00
export class ModuleImportDescription {
type: string;
valtype?: string;
id?: Identifier;
signature?: Signature;
}
2018-04-27 18:53:07 +02:00
export class ModuleImport extends Node {
module: string;
2018-05-11 14:13:06 +02:00
descr: ModuleImportDescription;
2018-04-27 18:53:07 +02:00
name: string;
}
export class ModuleExport extends Node {
name: string;
descr: ModuleExportDescr;
}
2018-05-30 14:20:35 +02:00
type Index = Identifier | NumberLiteral;
export class ModuleExportDescr extends Node {
type: string;
exportType: string;
id: Index;
}
export class NumberLiteral extends Node {
value: number;
raw: string;
2018-04-27 18:53:07 +02:00
}
export class FloatLiteral extends Node {}
2018-06-02 18:00:10 +02:00
export class GlobalType extends Node {
valtype: string;
}
export class Global extends Node {
init: Instruction[];
2018-06-02 18:00:10 +02:00
globalType: GlobalType;
}
export class FuncParam extends Node {
valtype: string;
}
export class Instruction extends Node {
id: string;
args: NumberLiteral[];
}
2018-04-27 18:53:07 +02:00
export class CallInstruction extends Instruction {}
export class ObjectInstruction extends Instruction {}
export class Func extends Node {
signature: Signature;
}
export class Signature {
2018-06-04 16:23:41 +02:00
type: "Signature";
params: FuncParam[];
results: string[];
2018-04-27 18:53:07 +02:00
}
2018-05-16 13:22:46 +02:00
export class TypeInstruction extends Node {}
2018-04-27 18:53:07 +02:00
export class IndexInFuncSection extends Node {}
export function indexLiteral(index: number): Index;
2018-05-14 13:00:19 +02:00
export function numberLiteralFromRaw(num: number): NumberLiteral;
2018-05-29 16:14:16 +02:00
export function floatLiteral(
value: number,
nan?: boolean,
inf?: boolean,
raw?: string
): FloatLiteral;
2018-04-27 18:53:07 +02:00
export function global(globalType: string, nodes: Node[]): Global;
export function identifier(indentifier: string): Identifier;
export function funcParam(valType: string, id: Identifier): FuncParam;
2019-02-11 17:42:14 +01:00
export function instruction(inst: string, args?: Node[]): Instruction;
export function callInstruction(funcIndex: Index): CallInstruction;
2018-04-27 18:53:07 +02:00
export function objectInstruction(
kind: string,
type: string,
init: Node[]
): ObjectInstruction;
2018-05-16 13:22:46 +02:00
export function signature(params: FuncParam[], results: string[]): Signature;
2018-06-04 16:23:41 +02:00
export function func(initFuncId, signature: Signature, funcBody): Func;
2018-05-29 16:14:16 +02:00
export function typeInstruction(
id: Identifier,
functype: Signature
): TypeInstruction;
export function indexInFuncSection(index: Index): IndexInFuncSection;
2018-04-27 18:53:07 +02:00
export function moduleExport(
identifier: string,
2018-05-16 13:22:46 +02:00
descr: ModuleExportDescr
): ModuleExport;
export function moduleExportDescr(
2018-04-27 18:53:07 +02:00
type: string,
index: Index
): ModuleExportDescr;
2018-04-27 18:53:07 +02:00
export function getSectionMetadata(ast: any, section: string);
2018-06-04 16:23:41 +02:00
export class FuncSignature {
args: string[];
result: string[];
}
2018-06-06 10:39:06 +02:00
// Node matcher
export function isGlobalType(n: Node): boolean;
export function isTable(n: Node): boolean;
export function isMemory(n: Node): boolean;
export function isFuncImportDescr(n: Node): boolean;
2018-04-27 18:53:07 +02:00
}
2018-09-18 15:17:44 +02:00
// This "hack" is needed because typescript doesn't support recursive type definitions
// It's referenced from "ruleSet-conditions" in schemas/WebpackOptions.json
interface RuleSetConditionsRecursive
extends Array<import("./declarations/WebpackOptions").RuleSetCondition> {}
interface RuleSetConditionsAbsoluteRecursive
extends Array<
2019-02-05 10:06:32 +01:00
import("./declarations/WebpackOptions").RuleSetConditionAbsolute
> {}
2018-09-18 15:17:44 +02:00
2018-04-01 04:36:26 +02:00
/**
* Global variable declarations
* @todo Once this issue is resolved, remove these globals and add JSDoc onsite instead
* https://github.com/Microsoft/TypeScript/issues/15626
*/
2018-03-25 18:07:41 +02:00
declare const $hash$;
declare const $requestTimeout$;
declare const installedModules;
declare const $require$;
declare const hotDownloadManifest;
declare const hotDownloadUpdateChunk;
declare const hotDisposeChunk;
declare const modules;
2018-03-29 06:24:34 +02:00
declare const installedChunks;
declare const hotAddUpdateChunk;
declare const parentHotUpdateCallback;
declare const $hotChunkFilename$;
declare const $hotMainFilename$;
declare namespace WebAssembly {}
2018-03-29 06:24:34 +02:00
declare const importScripts;
declare const $crossOriginLoading$;
2018-04-01 04:36:26 +02:00
declare const chunkId;
type TODO = any;