/** * Copyright 2023 Design Barn Inc. */ import type { ThemeOptions } from '../common/dotlottie-theme-common'; import { LottieThemeCommon } from '../common/dotlottie-theme-common'; export type { ThemeOptions }; export class LottieTheme extends LottieThemeCommon { public constructor(options: ThemeOptions) { super(options); } }