/** * Runtime support checks for the concurrency module. * * @module bquery/concurrency */ import type { ConcurrencySupport } from './types'; /** * Returns a feature snapshot for zero-build inline worker execution. * * @example * ```ts * if (!isConcurrencySupported()) { * console.warn('Worker tasks are unavailable in this environment.'); * } * ``` */ export declare function getConcurrencySupport(): ConcurrencySupport; /** * Returns `true` when bQuery can create inline worker tasks in the current * environment. */ export declare function isConcurrencySupported(): boolean; //# sourceMappingURL=support.d.ts.map