Skip to content

Commit

Permalink
🏷️ Make get second parameter optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Frontendland committed Dec 12, 2024
1 parent 4e64b50 commit 7ff124c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utilityTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ declare module 'webcoreui' {
cancel: () => void
}
export const get: (selector: string, all: boolean) => Element | NodeListOf<Element> | null
export const get: (selector: string, all?: boolean) => Element | NodeListOf<Element> | null
export const on: (
selector: string | HTMLElement | Document,
event: string,
Expand Down

0 comments on commit 7ff124c

Please sign in to comment.