Files
OpenSquawk/types/aos.d.ts
itsrubberduck de02dc4f9e typescript
2026-02-17 18:19:55 +01:00

22 lines
429 B
TypeScript

declare module 'aos' {
interface AOSOptions {
offset?: number
delay?: number | string
duration?: number | string
easing?: string
once?: boolean
mirror?: boolean
anchorPlacement?: string
disable?: boolean | string | (() => boolean)
}
interface AOS {
init(options?: AOSOptions): void
refresh(force?: boolean): void
refreshHard(): void
}
const aos: AOS
export default aos
}