Skip to content

Instantly share code, notes, and snippets.

@basarat
Created March 11, 2016 01:39
Show Gist options
  • Save basarat/7760a35d0c26a0cb9250 to your computer and use it in GitHub Desktop.
Save basarat/7760a35d0c26a0cb9250 to your computer and use it in GitHub Desktop.
interface Foo {
a: number;
b?: number;
}
var foo: Foo = {
a: 123
}; // Don't set `b` to anything.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment