UNPKG
find-bar
Version:
beta (0.1.0-beta)
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.1.0-beta
Add a find bar to Electron App
github.com/avwo/electron-find-bar
avwo/electron-find-bar
find-bar
/
index.d.ts
10 lines
(8 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
FindBarOptions
{
left
?:
number
;
right
?:
number
;
// 80 by default
top
?:
number
;
// (mac: 20, win: 30) by default
bottom
?:
number
;
darkMode
?:
boolean
;
// true by default
}
export
default
function
(
win
:
any
,
options
?:
FindBarOptions
):
void
;