@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
50 lines (49 loc) • 1.05 kB
TypeScript
import Role from './Role';
import { PhysicalLocation, PersonVehicle, VehicleUse } from '../../..';
import List from '../List';
declare const _default: {
new (): {
/**
* ID
*/
_id: number;
id: number;
/**
* Uso do Veículo
*/
_vehicleUse: VehicleUse;
/**
* Fabricante
*/
_manufacturer: string;
/**
* Modelo
*/
_model: string;
/**
* Placa
*/
_plate: string;
/**
* Papel do veículo
*/
_role: Role;
/**
* Local físico
*/
_physicalLocation: PhysicalLocation;
/**
* Data do Último Acesso
*/
_lastAccess: Date;
/**
* Pessoa Veículo
*/
_personVehicles: List<PersonVehicle>;
toJsonString(): string;
replaceArray(json: string): string;
toJson(): any;
isArray(what: any): boolean;
};
};
export = _default;