UNPKG

typescript-dotnet-core

Version:

A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.

20 lines (17 loc) 449 B
/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md */ /** * This interface guarantees there will be a value property for all time units. */ export interface ITimeMeasurement { ticks:number; milliseconds:number; seconds:number; minutes:number; hours:number; days:number; } export default ITimeMeasurement;