@nodegui/vue-nodegui
Version:
library to render native desktop applications using vue js
13 lines (9 loc) • 313 B
text/typescript
import { VNAnimatedImage, AnimatedImageProps } from './VNAnimatedImage';
import { WidgetConfig } from '../config';
class AnimatedImageConfig implements WidgetConfig<AnimatedImageProps> {
parentNode: any;
createElement() {
return new VNAnimatedImage();
}
}
export default AnimatedImageConfig;