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.

12 lines (11 loc) 169 B
/** * @module Utilities */ /** * * IMPORT_PATH: `"@daiso-tech/core/utilities"` * @group Contracts */ export type IInitizable = { init(): PromiseLike<void>; };