Skip to content

Instantly share code, notes, and snippets.

@florianmartens
Created June 17, 2021 19:35
Show Gist options
  • Save florianmartens/16568a8d1e5e35dbf5721c870e53d593 to your computer and use it in GitHub Desktop.
Save florianmartens/16568a8d1e5e35dbf5721c870e53d593 to your computer and use it in GitHub Desktop.
interface SmallerType {
foo: string;
baz: string;
}
let obj: SmallerType;
const smaller = {
// included in our requirements
foo: "foo",
baz: "bar",
// infinite number of other properties
zap: "zap",
yup: "yup",
}
obj = smaller; // -> works fine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment