@tsdotnet/date-time
Version:
[](https://github.com/tsdotnet/date-time/blob/master/LICENSE) [](https://www.npmjs
15 lines (11 loc) • 326 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* @license MIT
*/
import CalendarDate from './CalendarDate.js';
import ClockTimeValue from './ClockTimeValue.js';
export default interface TimeStampValue
extends CalendarDate, Partial<ClockTimeValue>
{
// eslint-disable-next-line semi
}