@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
15 lines • 513 B
JavaScript
/**
* @module TimeSpan
*/
/**
* Symbol key for TimeSpan conversion method.
* Used to implement the `ITimeSpan` contract on duration/time objects.
*
* This symbol prevents naming conflicts by using a unique symbol as the property key.
* Objects implementing ITimeSpan use this symbol to provide millisecond conversion.
*
* IMPORT_PATH: `"@daiso-tech/core/time-span/contracts"`
* @group Contracts
*/
export const TO_MILLISECONDS = Symbol("TO_MILLISECONDS");
//# sourceMappingURL=time-span.contract.js.map