chore(package): update stencil

This commit is contained in:
Adam Bradley
2018-05-30 12:01:44 -05:00
parent 3cdc696847
commit 128ed60510
4 changed files with 2036 additions and 2042 deletions

View File

@ -13,9 +13,12 @@ declare global {
}
namespace JSXElements {}
interface HTMLElement {
componentOnReady?: () => Promise<this | null>;
}
interface HTMLStencilElement extends HTMLElement {
componentOnReady(): Promise<this>;
componentOnReady(done: (ele?: this) => void): void;
forceUpdate(): void;
}