type.d.ts 553 B

1234567891011121314151617181920212223242526
  1. export interface TdOverlayProps {
  2. backgroundColor?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. duration?: {
  7. type: NumberConstructor;
  8. value?: number;
  9. };
  10. preventScrollThrough?: {
  11. type: BooleanConstructor;
  12. value?: boolean;
  13. };
  14. usingCustomNavbar?: {
  15. type: BooleanConstructor;
  16. value?: boolean;
  17. };
  18. visible?: {
  19. type: BooleanConstructor;
  20. value?: boolean;
  21. };
  22. zIndex?: {
  23. type: NumberConstructor;
  24. value?: number;
  25. };
  26. }