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.

OverlayState.js 250B

12345678910111213
  1. /*
  2. * @Author: Caven
  3. * @Date: 2020-05-10 08:24:54
  4. * @Last Modified by: Caven
  5. * @Last Modified time: 2020-05-10 09:08:27
  6. */
  7. const OverlayState = {
  8. INITIALIZED: 'initialized',
  9. ADDED: 'added',
  10. REMOVED: 'removed'
  11. }
  12. export default OverlayState