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.

LargeContainer.js 281B

123456789101112131415161718192021222324
  1. export default class LargeContainer {
  2. /**
  3. * @returns Promise
  4. */
  5. show () {
  6. }
  7. /**
  8. * @returns Promise
  9. */
  10. hide () {
  11. }
  12. resize (containerWidth, containerHeight, animate) {
  13. }
  14. onHoverIn (e) {
  15. }
  16. onHoverOut (e) {
  17. }
  18. }