Skip to content

Instantly share code, notes, and snippets.

@pewniak747
Last active August 4, 2020 11:02
Show Gist options
  • Save pewniak747/3b616158e02b82de87ee665086ac1aeb to your computer and use it in GitHub Desktop.
Save pewniak747/3b616158e02b82de87ee665086ac1aeb to your computer and use it in GitHub Desktop.
export interface Order {
id: number;
productId: number;
quantity: number;
shipDate: string;
status: "placed" | "approved" | "delivered";
complete: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment