[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:
stefanholzapfel
2017-08-09 19:51:49 +02:00
committed by Mohamed Hegazy
parent d32fb02c30
commit 34aff41c75
2 changed files with 5 additions and 1 deletions

View File

@@ -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" />

View File

@@ -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 **/