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 (14 loc) 361 B
/** * @module Namespace */ import { type IKey, type INamespace } from "../../namespace/contracts/_module.js"; /** * The `NoOpNamespace` will disable namespacing. * * IMPORT_PATH: `"@daiso-tech/core/namespace"` * @group Implementations */ export declare class NoOpNamespace implements INamespace { toString(): string; create(key: string): IKey; }