UNPKG
@dartbot/segment
Version:
latest (0.4.0)
0.4.0
0.3.1-rc.0
0.2.0
0.1.0
Segmented display implementd as a vanilla Web Component
docs.dartbot.com/segment
dartbotapp/segment
@dartbot/segment
/
dist
/
lib
/
utils
/
debounce.d.ts
5 lines
(4 loc)
•
149 B
TypeScript
View Raw
1
2
3
4
5
export
declare
const
debounce
:
(
func
:
any
,
delay
:
number
,
options
?: { leading?:
boolean
; trailing?:
boolean
; }
) =>
(
...
args
:
any
[]
) =>
void
;