@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
12 lines (11 loc) • 553 B
TypeScript
import { BehaviorSubject } from 'rxjs';
import { KoalaFileInterface } from './koala.file.interface';
import * as i0 from "@angular/core";
export declare class KoalaBtnFileService {
setFileSubject: BehaviorSubject<File | null>;
fileListSubject: BehaviorSubject<KoalaFileInterface[]>;
setFile(file: File): Promise<void>;
removeFile(files: KoalaFileInterface[], index: number): void;
static ɵfac: i0.ɵɵFactoryDeclaration<KoalaBtnFileService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<KoalaBtnFileService>;
}