Skip to content

Instantly share code, notes, and snippets.

@dubzzz
Created July 2, 2020 17:58
Show Gist options
  • Save dubzzz/70de666423c1a828f94922c9ecb58f64 to your computer and use it in GitHub Desktop.
Save dubzzz/70de666423c1a828f94922c9ecb58f64 to your computer and use it in GitHub Desktop.
type Generator<T> = {
generate(mrng: Random): T;
shrink(value: T): IterableIterator<T>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment