Skip to content

Instantly share code, notes, and snippets.

@kring
Created March 20, 2019 11:29
Show Gist options
  • Save kring/bd216c99b52dd3d6776e2e8920aaad6f to your computer and use it in GitHub Desktop.
Save kring/bd216c99b52dd3d6776e2e8920aaad6f to your computer and use it in GitHub Desktop.
interface InterfaceWithOptional {
foo?: number;
}
interface InterfaceWithUndefined {
foo: number | undefined;
}
function getInterfaceWithOptional(): InterfaceWithOptional { ... }
const x: InterfaceWithUndefined = getInterfaceWithOptional(); // Error!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment