国外MOSE官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
327 B

// WOW.js 类型声明
interface WowOptions {
boxClass?: string;
animateClass?: string;
offset?: number;
mobile?: boolean;
live?: boolean;
callback?: Function;
scrollContainer?: string | null;
}
declare class WOW {
constructor(options?: WowOptions);
init(): void;
}
interface Window {
WOW: typeof WOW;
}