21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
const bullpenSession = {
|
|
pitcherId: 1,
|
|
startedAt: new Date(2025, 3, 22, 16, 5, 13),
|
|
finishedAt: new Date(2025, 3, 22, 16, 23, 45),
|
|
pitches: [{
|
|
pitchTypeId: 1,
|
|
pitchTime: new Date(2025, 3, 22, 16, 7, 21),
|
|
aimedArea: 11,
|
|
hitArea: 12
|
|
}, {
|
|
pitchTypeId: 4,
|
|
pitchTime: new Date(2025, 3, 22, 16, 9, 57),
|
|
aimedArea: 6,
|
|
hitArea: 14
|
|
}]
|
|
};
|
|
|
|
module.exports = {
|
|
bullpenSession
|
|
}
|