2017-01-26 11:16:51 -08:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
export const enum AnimationTransitionInstructionType {TransitionAnimation, TimelineAnimation}
|
|
|
|
|
2017-02-22 15:14:49 -08:00
|
|
|
export interface AnimationEngineInstruction { type: AnimationTransitionInstructionType; }
|