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 5a42ba8 commit b028d34Copy full SHA for b028d34
include-fragment-element.js.flow
@@ -5,6 +5,8 @@ declare module '@github/include-fragment-element' {
5
get data(): Promise<string>;
6
get src(): string;
7
set src(url: string): void;
8
+ get accept(): string;
9
+ set accept(accept: string): void;
10
fetch(request: Request): Promise<Response>;
11
}
12
index.d.ts
@@ -1,6 +1,7 @@
1
export default class IncludeFragmentElement extends HTMLElement {
2
readonly data: Promise<string>;
3
src: string;
4
+ accept: string;
0 commit comments