mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
[meteor] Added optional parameters to Meteor's apply function (#18540)
* Added optional parameters to Meteor's apply function * Add ramda.traverse (#18424) * Add ramda.traverse * Use correct indention * Added meteor/webapp definitions (#18471) * Added meteor/webapp definitions * Meteor modules now seperated * Fixes #18283 (#18404) * Explicitly specify possibly nullable types in CodeMirror (#18371) * Explicitly specify possibly nullable types in CodeMirror * scrollTo optional args * Improve Cursor.count (#18504) * add microrouter types (#18500) * add microrouter types * add params field to IncomingMessage * fix lint * use micro types for RequestHandler * Added optional parameters to Meteor's apply function
This commit is contained in:
committed by
Mohamed Hegazy
parent
d32fb02c30
commit
34aff41c75
2
types/meteor/index.d.ts
vendored
2
types/meteor/index.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
// Type definitions for Meteor 1.4
|
||||
// Project: http://www.meteor.com/
|
||||
// Definitions by: Alex Borodach <https://github.com/barbatus>, Dave Allen <https://github.com/fullflavedave>, Olivier Refalo <https://github.com/orefalo>, Daniel Neveux <https://github.com/dagatsoin>, Birk Skyum <https://github.com/birkskyum>, Arda TANRIKULU <https://github.com/ardatan>
|
||||
// Definitions by: Alex Borodach <https://github.com/barbatus>, Dave Allen <https://github.com/fullflavedave>, Olivier Refalo <https://github.com/orefalo>, Daniel Neveux <https://github.com/dagatsoin>, Birk Skyum <https://github.com/birkskyum>, Arda TANRIKULU <https://github.com/ardatan>, Stefan Holzapfel <https://github.com/stefanholzapfel>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/// <reference path="./accounts.d.ts" />
|
||||
|
||||
4
types/meteor/meteor.d.ts
vendored
4
types/meteor/meteor.d.ts
vendored
@@ -56,6 +56,8 @@ declare module Meteor {
|
||||
function apply(name: string, args: EJSONable[], options?: {
|
||||
wait?: boolean;
|
||||
onResultReceived?: Function;
|
||||
returnStubValue?: boolean;
|
||||
throwStubExceptions?: boolean;
|
||||
}, asyncCallback?: Function): any;
|
||||
/** Method **/
|
||||
|
||||
@@ -157,6 +159,8 @@ declare module "meteor/meteor" {
|
||||
function apply(name: string, args: EJSONable[], options?: {
|
||||
wait?: boolean;
|
||||
onResultReceived?: Function;
|
||||
returnStubValue?: boolean;
|
||||
throwStubExceptions?: boolean;
|
||||
}, asyncCallback?: Function): any;
|
||||
/** Method **/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user