Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created March 8, 2018 17:50
Show Gist options
  • Save ajcrites/4a01486055dd2021e98a0e84d14954b9 to your computer and use it in GitHub Desktop.
Save ajcrites/4a01486055dd2021e98a0e84d14954b9 to your computer and use it in GitHub Desktop.
interface Foo {
foo: string;
}
const fn = () => ({
foo: 'bar',
bar: 'baz',
});
const fooImpl: Foo = fn();
fooImpl.bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment