mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- Completely remove promise overload from code. - Bump dev_bundle version and remove fibers/meteor-promise dependency. - Bump meteor package promise version. - Remove some tests that are not needed anymore.
23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
export {}
|
|
|
|
declare global {
|
|
interface JSON {
|
|
// The ES5 library fails to allow the input parameter to be a Buffer.
|
|
parse(input: Buffer | string, reviver?: (this: any, key: string, value: any) => any): any;
|
|
}
|
|
interface Function {
|
|
// func-utils.ts makes usage of this feature
|
|
displayName?: string;
|
|
}
|
|
|
|
type DiscardPattern = string | RegExp;
|
|
|
|
interface Discards {
|
|
[packageName: string]: DiscardPattern[];
|
|
}
|
|
|
|
interface DiscardsInput {
|
|
[packageName: string]: DiscardPattern[] | DiscardPattern;
|
|
}
|
|
}
|