type.d.ts 259 B

12345678910111213
  1. export interface VapConfig {
  2. container: HTMLElement;
  3. src: string;
  4. config: string | {
  5. [key: string]: any;
  6. };
  7. width: number;
  8. height: number;
  9. fps?: number;
  10. mute?: boolean;
  11. precache?: boolean;
  12. [key: string]: any;
  13. }