UNPKG

nativescript-gif

Version:
21 lines 539 B
import { Property, View } from '@nativescript/core'; export class GifCommon extends View { constructor() { super(); } } export const srcProperty = new Property({ name: 'src', defaultValue: '', }); srcProperty.register(GifCommon); export const headersProperty = new Property({ name: 'headers', }); headersProperty.register(GifCommon); export const isLoadingProperty = new Property({ name: 'isLoading', defaultValue: false, }); isLoadingProperty.register(GifCommon); //# sourceMappingURL=gif.common.js.map