UNPKG

@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 488 B
/** * @module FileSize */ /** * Symbol key for FileSize conversion method. * Used to implement the `IFileSize` contract on file size objects. * * This symbol prevents naming conflicts by using a unique symbol as the property key. * Objects implementing IFileSize use this symbol to provide byte conversion. * * IMPORT_PATH: `"@daiso-tech/core/file-size/contracts"` * @group Contracts */ export const TO_BYTES = Symbol("TO_BYTES"); //# sourceMappingURL=file-size.contract.js.map