Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,10 +395,9 @@ export declare function forceUpdate(ref: any): void;
*/
export declare function getRenderingRef(): any;

// TODO: remove `autocorrect` omission when this is properly typed in [in typescript](https://github.com/microsoft/typescript/issues/62083)
export interface HTMLStencilElement extends Omit<HTMLElement, 'autocorrect'> {
componentOnReady(): Promise<this>;
// TODO: remove this when [added to typescript](https://github.com/microsoft/typescript/issues/62083)
autocorrect: 'on' | 'off';
}

/**
Expand Down
Loading