aboutsummaryrefslogtreecommitdiff
path: root/src/@types/browser
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-08-11 21:37:08 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-08-11 21:40:10 +0900
commitf497109ecc801660dc23bbad8445b120cd75561e (patch)
tree294242675d42468271336ca0f8d702838b73345f /src/@types/browser
parent1f10eac90011e6c3c1ad20ce91b358911dc74dcb (diff)
Enable @typescript-eslint/no-namespace
Diffstat (limited to 'src/@types/browser')
-rw-r--r--src/@types/browser/index.d.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/@types/browser/index.d.ts b/src/@types/browser/index.d.ts
new file mode 100644
index 0000000..14acfe0
--- /dev/null
+++ b/src/@types/browser/index.d.ts
@@ -0,0 +1,13 @@
+// NOTE: window.find is not standard API
+// https://developer.mozilla.org/en-US/docs/Web/API/Window/find
+interface Window {
+ find(
+ aString: string,
+ aCaseSensitive?: boolean,
+ aBackwards?: boolean,
+ aWrapAround?: boolean,
+ aWholeWord?: boolean,
+ aSearchInFrames?: boolean,
+ aShowDialog?: boolean
+ ): boolean;
+}