UNPKG

@kushki/ng-suka

Version:

<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>

13 lines (12 loc) 346 B
import { EventEmitter } from '@angular/core'; import { FileItem } from './file-item.interface'; export declare class File { /** * A single `FileItem` from the set of `FileItem`s */ fileItem: FileItem; remove: EventEmitter<any>; selectedFile: boolean; readonly isInvalidText: string; readonly isValid: boolean; }