From 3293dd34ca8a528c252393985786958ee41a4b70 Mon Sep 17 00:00:00 2001 From: chenyunhsin Date: Tue, 18 May 2021 21:48:35 +0800 Subject: [PATCH] docs: add missing `Product` interface to example (#42147) Fixes #42144 PR Close #42147 --- .../examples/getting-started-v0/src/app/products.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aio/content/examples/getting-started-v0/src/app/products.ts b/aio/content/examples/getting-started-v0/src/app/products.ts index ebcde04caa..1bd45bd64c 100644 --- a/aio/content/examples/getting-started-v0/src/app/products.ts +++ b/aio/content/examples/getting-started-v0/src/app/products.ts @@ -1,3 +1,10 @@ +export interface Product { + id: number; + name: string; + price: number; + description: string; +} + export const products = [ { id: 1,