UNPKG
@eslamdevui/ui
Version:
beta (4.1.1-rc.2)
latest (4.3.0)
4.3.0
4.1.1-rc.2
4.1.1-rc.1
4.1.0
4.0.0
4.0.0-beta
3.3.4
3.3.3
3.3.2-beta.3
3.3.2-beta.2
3.3.2-beta.1
3.3.2-beta.0
3.3.1
3.3.0
3.2.2
3.2.1
3.2.0
3.2.0-beta.2
3.2.0-beta.1
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
ui.nuxt.com
MohamedEslam04/ui
@eslamdevui/ui
/
dist
/
runtime
/
composables
/
useScrollspy.d.ts
7 lines
(6 loc)
•
199 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
Ref
}
from
'vue'
;
export
declare
function
useScrollspy
(
): {
visibleHeadings
:
Ref
<
string
[]>;
activeHeadings
:
Ref
<
string
[]>;
updateHeadings
:
(
headings
:
Element
[]
) =>
void
; };