Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
RELNOTES: Add type annotations for goog.ui.AnimatedZippy.Events.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 504576441
Change-Id: Ia7dc8bf4db41d7bdae17f9e7f97b416d1a7682d4
  • Loading branch information
jessieliu1 authored and copybara-github committed Jan 25, 2023
1 parent 53b06a2 commit 8933907
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions closure/goog/ui/animatedzippy.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,16 @@ goog.inherits(goog.ui.AnimatedZippy, goog.ui.Zippy);
* @const
*/
goog.ui.AnimatedZippy.Events = {
// The beginning of the animation when the zippy state toggles.
/**
* The beginning of the animation when the zippy state toggles.
* @const {string}
*/
TOGGLE_ANIMATION_BEGIN: goog.events.getUniqueId('toggleanimationbegin'),
// The end of the animation when the zippy state toggles.

/**
* The end of the animation when the zippy state toggles.
* @const {string}
*/
TOGGLE_ANIMATION_END: goog.events.getUniqueId('toggleanimationend')
};

Expand Down

0 comments on commit 8933907

Please # to comment.