DEV Community

Discussion on: Using Lottie Animations inside Angular or Ionic 4

Collapse
 
seanperkins profile image
Sean Perkins

With TypeScript, you can import a class/const/etc. with an alias, to avoid name collision.

For example, you could do this:

import { defineCustomElements as defineLottieCustomElements } from '@teamhive/lottie-player/loader';

defineLottieCustomElements(window);

You can name the variable whatever you'd like, with the as syntax.