Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516
  1. class TooltipManager {
  2. private activeCloser: (() => void) | null = null
  3. register(closeFn: () => void) {
  4. if (this.activeCloser)
  5. this.activeCloser()
  6. this.activeCloser = closeFn
  7. }
  8. clear(closeFn: () => void) {
  9. if (this.activeCloser === closeFn)
  10. this.activeCloser = null
  11. }
  12. }
  13. export const tooltipManager = new TooltipManager()