File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ export default class RemoteInputElement extends HTMLElement {
2+ readonly input : HTMLInputElement | HTMLTextAreaElement | undefined ;
3+ src : string ;
4+ }
Original file line number Diff line number Diff line change 22
33declare module '@github/remote-input-element' {
44 declare export default class RemoteInputElement extends HTMLElement {
5- get input(): ?HTMLInputElement;
5+ get input(): ?( HTMLInputElement | HTMLTextAreaElement) ;
66 get src(): string;
77 set src(url: string): void;
88 }
Original file line number Diff line number Diff line change 44 "description" : " An input element that sends its value to a server endpoint and renders the response body." ,
55 "main" : " dist/index.umd.js" ,
66 "module" : " dist/index.esm.js" ,
7+ "types" : " index.d.ts" ,
78 "license" : " MIT" ,
89 "repository" : " github/remote-input-element" ,
910 "files" : [
10- " dist"
11+ " dist" ,
12+ " index.d.ts"
1113 ],
1214 "scripts" : {
1315 "clean" : " rm -rf dist" ,
You can’t perform that action at this time.
0 commit comments