UNPKG

@uppy/angular

Version:

Angular component wrappers around Uppy's official UI plugins.

19 lines (18 loc) 1.09 kB
import { ElementRef, OnDestroy, OnChanges, SimpleChanges } from '@angular/core'; import { Uppy } from '@uppy/core'; import type { StatusBarOptions } from '@uppy/status-bar'; import { Body, Meta } from '@uppy/utils/lib/UppyFile'; import { UppyAngularWrapper } from '../../utils/wrapper'; import * as i0 from "@angular/core"; export declare class StatusBarComponent<M extends Meta, B extends Body> extends UppyAngularWrapper<M, B, StatusBarOptions> implements OnDestroy, OnChanges { el: ElementRef<any>; uppy: Uppy<M, B>; props: StatusBarOptions; /** Inserted by Angular inject() migration for backwards compatibility */ constructor(...args: unknown[]); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<StatusBarComponent<any, any>, never>; static ɵcmp: i0.ɵɵComponentDeclaration<StatusBarComponent<any, any>, "uppy-status-bar", never, { "uppy": { "alias": "uppy"; "required": false; }; "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>; }