Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created February 7, 2025 14:42
Show Gist options
  • Save Kcko/7c768cacc1735dc51e20457e6d9df5bb to your computer and use it in GitHub Desktop.
Save Kcko/7c768cacc1735dc51e20457e6d9df5bb to your computer and use it in GitHub Desktop.
/*
Required je utility typ v TypeScriptu, který změní všechny vlastnosti daného typu na povinné (required).
*/
interface User1 {
id: number;
name?: string;
email?: string;
}
type RequiredUser = Required<User1>;
const user1: RequiredUser = {
id: 1,
name: 'Alice',
email: '[email protected]',
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment