UNPKG

@kubb/core

Version:

Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.

8 lines (7 loc) 159 B
export async function timeout(ms: number): Promise<unknown> { return new Promise((resolve) => { setTimeout(() => { resolve(true) }, ms) }) }