Skip to content

Commit

Permalink
fix: broken Omit type
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjclark committed Feb 3, 2022
1 parent daf783a commit c495544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/lib/DomExtender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ declare module 'awaited-dom/base/interfaces/official' {
interface IHTMLCollection extends IBaseExtendNodeList {}
}

type INodeExtensionFns = Omit<IBaseExtendNode, '$isClickable' | '$isVisible' | '$exists', '$hasFocus'>;
type INodeExtensionFns = Omit<IBaseExtendNode, '$isClickable' | '$isVisible' | '$exists' | '$hasFocus'>;
const NodeExtensionFns: INodeExtensionFns = {
async $click(verification: IElementInteractVerification = 'elementAtPath'): Promise<void> {
const coreFrame = await getCoreFrame(this);
Expand Down

0 comments on commit c495544

Please sign in to comment.