6 lines
152 B
Plaintext
6 lines
152 B
Plaintext
import { Construct } from "constructs";
|
|
class MyConstruct extends Construct {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
/// here
|
|
} } |