4 lines
193 B
TypeScript
4 lines
193 B
TypeScript
export type Concurrency = number | string | null;
|
|
export declare const setConcurrency: (newConcurrency: Concurrency) => void;
|
|
export declare const getConcurrency: () => string | number | null;
|