Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / motif-web-admin-core   js

Repository URL to install this package:

Version: 0.3.1 

/ lib / components / UI / wc-upload-panel-component / wc-file-drop-panel-component.d.ts

import { OnInit } from '@angular/core';
import { NGXLogger } from 'web-console-core';
export declare class WCFileDropPanelComponent implements OnInit {
    private logger;
    altCaption: string;
    droppedFileName: string;
    private _droppedFile;
    private _caption;
    constructor(logger: NGXLogger);
    /**
     * Angular ngOnInit
     */
    ngOnInit(): void;
    handleFilesDropped(event: any): void;
    readonly file: File;
    reset(): void;
    caption: string;
}