国外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.

19 lines
327 B

3 months ago
  1. // WOW.js 类型声明
  2. interface WowOptions {
  3. boxClass?: string;
  4. animateClass?: string;
  5. offset?: number;
  6. mobile?: boolean;
  7. live?: boolean;
  8. callback?: Function;
  9. scrollContainer?: string | null;
  10. }
  11. declare class WOW {
  12. constructor(options?: WowOptions);
  13. init(): void;
  14. }
  15. interface Window {
  16. WOW: typeof WOW;
  17. }