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.

13 lines (12 loc) 317 B
/** * @module Utilities */ import type { OneOrMore } from "../../utilities/types/_module.js"; /** * @internal */ export declare function resolveOneOrMore<TType>(value: OneOrMore<TType>): TType[]; /** * @internal */ export declare function resolveOneOrMoreStr(name: OneOrMore<string>, joinStr?: string): string;