overlay.d.ts 559 B

12345678910111213141516171819202122
  1. import { SuperComponent } from '../common/src/index';
  2. import { TdOverlayProps } from './type';
  3. export interface OverlayProps extends TdOverlayProps {
  4. }
  5. export default class Overlay extends SuperComponent {
  6. properties: TdOverlayProps;
  7. behaviors: string[];
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. computedStyle: string;
  12. _zIndex: number;
  13. };
  14. observers: {
  15. backgroundColor(v: any): void;
  16. zIndex(v: any): void;
  17. };
  18. methods: {
  19. handleClick(): void;
  20. noop(): void;
  21. };
  22. }