Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Tim van der Lippe | ead1fa4 | 2020-10-16 13:58:19 | [diff] [blame] | 5 | // @ts-nocheck |
| 6 | |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 7 | import * as AnimationModule from './animation.js'; |
| 8 | |
| 9 | self.Animation = self.Animation || {}; |
Mathias Bynens | 15213d0 | 2020-05-14 11:55:11 | [diff] [blame] | 10 | /* global Animation:writable */ |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 11 | Animation = Animation || {}; |
| 12 | |
| 13 | /** |
| 14 | * @constructor |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 15 | */ |
| 16 | Animation.AnimationModel = AnimationModule.AnimationModel.AnimationModel; |
| 17 | |
| 18 | /** @enum {symbol} */ |
| 19 | Animation.AnimationModel.Events = AnimationModule.AnimationModel.Events; |
| 20 | |
| 21 | /** |
| 22 | * @constructor |
| 23 | */ |
| 24 | Animation.AnimationModel.Animation = AnimationModule.AnimationModel.AnimationImpl; |
| 25 | |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 26 | /** |
| 27 | * @constructor |
| 28 | */ |
| 29 | Animation.AnimationModel.AnimationGroup = AnimationModule.AnimationModel.AnimationGroup; |
| 30 | |
| 31 | /** |
| 32 | * @constructor |
| 33 | */ |
| 34 | Animation.AnimationModel.ScreenshotCapture = AnimationModule.AnimationModel.ScreenshotCapture; |
| 35 | |
| 36 | /** |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 37 | * @implements {SDK.SDKModelObserver<!Animation.AnimationModel>} |
| 38 | * @constructor |
| 39 | * @unrestricted |
| 40 | */ |
| 41 | Animation.AnimationTimeline = AnimationModule.AnimationTimeline.AnimationTimeline; |
| 42 | |
Paul Lewis | 752031f | 2020-01-09 14:14:23 | [diff] [blame] | 43 | /** |
| 44 | * @constructor |
| 45 | */ |
| 46 | Animation.AnimationUI = AnimationModule.AnimationUI.AnimationUI; |
| 47 | |
| 48 | /** |
| 49 | * @enum {string} |
| 50 | */ |
Kalon Hinds | d01eb54 | 2020-01-10 01:07:34 | [diff] [blame] | 51 | Animation.AnimationUI.Events = AnimationModule.AnimationUI.Events; |