tsbase
Version:
Base class libraries for TypeScript
33 lines • 620 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.transactionData = exports.customerData = void 0;
exports.customerData = [
{
id: 1,
name: 'John Doe',
birthDate: new Date(1985, 1, 1)
},
{
id: 2,
name: 'Jane Doe',
birthDate: new Date(1995, 1, 1)
}
];
exports.transactionData = [
{
id: 1,
customerId: 1,
total: 100
},
{
id: 2,
customerId: 1,
total: 50
},
{
id: 3,
customerId: 2,
total: 300
}
];
//# sourceMappingURL=data.js.map