graycoreio/daffodil

View on GitHub
libs/design/src/core/animation/animation-state-with-params.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * A type representing what Angular accepts on an animation template binding.
 * This type should likely be moved to `@angular/animations`.
 */
export interface AnimationStateWithParams<T = unknown, V = Record<string | number, unknown>>{
  value: T;
  params: V;
}