overlay.d.ts 951 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Overlay extends SuperComponent {
  3. properties: {
  4. zIndex: {
  5. type: NumberConstructor;
  6. value: number;
  7. };
  8. duration: {
  9. type: NumberConstructor;
  10. value: number;
  11. };
  12. backgroundColor: {
  13. type: StringConstructor;
  14. value: string;
  15. };
  16. preventScrollThrough: {
  17. type: BooleanConstructor;
  18. value: boolean;
  19. };
  20. customStyle: {
  21. type: StringConstructor;
  22. value: string;
  23. };
  24. };
  25. behaviors: string[];
  26. data: {
  27. prefix: string;
  28. classPrefix: string;
  29. computedStyle: string;
  30. _zIndex: number;
  31. };
  32. observers: {
  33. backgroundColor(v: any): void;
  34. zIndex(v: any): void;
  35. };
  36. methods: {
  37. handleClick(): void;
  38. noop(): void;
  39. };
  40. }