From 42b29b0e011fb08a876d0256db316c26edf5de59 Mon Sep 17 00:00:00 2001 From: Ivan Pomykacz Date: Wed, 10 Apr 2024 14:20:24 +0200 Subject: [PATCH] fix: props is actually mandatory --- API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API.md b/API.md index f066fa4..cf40051 100644 --- a/API.md +++ b/API.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', {