bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
13 lines (12 loc) • 383 B
TypeScript
import { Item } from "../../../shared/data/item";
export declare class Log extends Item {
id: number;
login: string;
fecha: Date;
tipo: string;
concepto: string;
datos: string;
respuesta: string;
error: string;
constructor(id: number, login: string, fecha: Date, tipo: string, concepto: string, datos: string, respuesta: string, error: string);
}