DefinitelyTyped/types/handlebars
Kling Attila 6b4aff1dda Updated type definitions for handlebars#registerPartials (#27388)
* Updating types for #registerPartial

#registerPartial is a polymorphic function now it accepts a single object making the second param optional.

Excerpt from the implementation:

```js
  registerPartial: function(name, partial) {
    if (toString.call(name) === objectType) {
      extend(this.partials, name);
    } else {
      if (typeof partial === 'undefined') {
        throw new Exception(`Attempting to register a partial called "${name}" as undefined`);
      }
      this.partials[name] = partial;
    }
  },
```

* Updated Handelbars#registerPartials

Removed extra spaces

* Added function overload with typed arguments

Replaced polymorphic argument types for registerPartial function with overloaded function definition
2018-07-23 11:35:20 -07:00
..
v1
handlebars-tests.ts
index.d.ts
tsconfig.json
tslint.json