From c44dfcae0e543470c047f66e1359bc6f0d84f0bb Mon Sep 17 00:00:00 2001 From: Ivan Pomykacz Date: Wed, 10 Apr 2024 13:51:18 +0200 Subject: [PATCH] props is actually mandatory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a06a10..cc75c91 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Steps required to define a _environmental_ project resources; At first, it might import { SmartStack, Name, UrlName, PathName, EC } from '@alma-cdk/project'; export class MyStack extends SmartStack { - constructor(scope: Construct, id: string, props?: StackProps) { + constructor(scope: Construct, id: string, props: StackProps) { super(scope, id, props); new dynamodb.Table(this, 'Table', {