bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
14 lines (13 loc) • 461 B
TypeScript
import { Item } from "./item";
export declare class Fichero extends Item {
id: number;
nombre: string;
fileName: string;
mimeType: string;
tamano: number;
fechaModificacion: string;
tipoFichero: string;
observaciones: string;
constructor(id: number, nombre: string, fileName: string, mimeType: string, tamano: number, fechaModificacion: string, tipoFichero: string, observaciones: string);
static newObject(): Fichero;
}