go.d.ts 125 B

123
  1. import type { Code } from './types';
  2. /** Executes code concurrently. */
  3. export declare const go: <T>(code: Code<T>) => void;