import { table: Table } from 'env';
import { setTimeout: Later } from 'env';
import { log: Log } from 'env';

type Log = (i32) => void;
type Later = (Function, i32) => void;

function echo(): void {
  log(42);
}

export function test(): void {
  setTimeout(echo, 5);
}

