@taiga-ui/kit
Version:
Taiga UI Angular main components kit
10 lines (9 loc) • 325 B
TypeScript
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
export type TuiFileState = 'deleted' | 'error' | 'loading' | 'normal';
export interface TuiFileLike {
readonly content?: PolymorpheusContent;
readonly name: string;
readonly size?: number;
readonly src?: string;
readonly type?: string;
}