We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5af7e commit 60b6ed5Copy full SHA for 60b6ed5
index.d.ts
@@ -1,4 +1,4 @@
1
export default class RemoteInputElement extends HTMLElement {
2
- readonly input?: HTMLInputElement;
+ readonly input: HTMLInputElement | HTMLTextAreaElement | undefined;
3
src: string;
4
-}
+}
index.js.flow
@@ -2,7 +2,7 @@
declare module '@github/remote-input-element' {
declare export default class RemoteInputElement extends HTMLElement {
5
- get input(): ?HTMLInputElement;
+ get input(): ?(HTMLInputElement | HTMLTextAreaElement);
6
get src(): string;
7
set src(url: string): void;
8
}
0 commit comments