Re: [w3c/webcomponents] [templates] API for updating (#685)

I think I would have preferred to have a top-level object instead of returning a dictionary in `instantiate`. e.g.

```js
const instance = factory.instantiate({ name: 'world' });
document.body.appendChild(content);
instance.update({ name: 'Jane' });
``` 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/685#issuecomment-350870876

Received on Monday, 11 December 2017 21:55:12 UTC