@lottiefiles/dotlottie-wc
Version:
Web component wrapper around the dotlottie-web library
12 lines (9 loc) • 361 B
TypeScript
import { DotLottieWorker, Config } from '@lottiefiles/dotlottie-web';
import { BaseDotLottieWC } from './base-dotlottie-wc.js';
import 'lit';
declare class DotLottieWorkerWC extends BaseDotLottieWC<DotLottieWorker> {
protected _createDotLottieInstance(config: Config & {
workerId?: string;
}): DotLottieWorker;
}
export { DotLottieWorkerWC };