@evan.network/ui-angular-core
Version:
The angular-core operates as an global and central library for the evan.network Angular 5 frontend development. Using this project you will be able to to the following things:
18 lines (17 loc) • 470 B
TypeScript
import { AnimationEntryMetadata } from 'angular-libs';
/**
* Creates an new grow transition Angular 5 trigger animation
* Can be used within the component creation
* @Component({
* ...
* animations: [
* createGrowTransition(),
* ]
* })
*
* <div *ngIf="**" [@growTransition]></div>
*
* @return {AnimationEntryMetadata} returns the grow transition
*/
declare const createGrowTransition: AnimationEntryMetadata;
export { createGrowTransition };