UNPKG

663 BTypeScriptView Raw
1import { Environment, RenderResult, LiveBlock, UpdatingOpcode } from '@glimmer/interfaces';
2import { SimpleElement, SimpleNode } from '@simple-dom/interface';
3export default class RenderResultImpl implements RenderResult {
4 env: Environment;
5 private updating;
6 private bounds;
7 readonly drop: object;
8 constructor(env: Environment, updating: UpdatingOpcode[], bounds: LiveBlock, drop: object);
9 rerender({ alwaysRevalidate }?: {
10 alwaysRevalidate?: false;
11 }): void;
12 parentElement(): SimpleElement;
13 firstNode(): SimpleNode;
14 lastNode(): SimpleNode;
15 handleException(): void;
16}
17//# sourceMappingURL=render-result.d.ts.map
\No newline at end of file