Skip to content

Instantly share code, notes, and snippets.

@abigmiu
Created December 23, 2022 11:49
Show Gist options
  • Save abigmiu/25285cb8ab3feb0b0bc7d49d2b78cfcc to your computer and use it in GitHub Desktop.
Save abigmiu/25285cb8ab3feb0b0bc7d49d2b78cfcc to your computer and use it in GitHub Desktop.
export interface ClientModel {
idCardFront: string;
}
export interface NewInter extends Omit<ClientModel, 'idCardFront'> {
idCardFront?: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment