Guest User

Untitled

a guest
Oct 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. type Context = {
  2. next: number;
  3. env: Env;
  4. }
  5. type Env = {
  6. [name: string]: Type;
  7. };
  8.  
  9. type Substitution = {
  10. [key: string]: Type;
  11. };
Add Comment
Please, Sign In to add comment