Skip to content

Commit 009c215

Browse files
committed
chore: rename props
1 parent c9efd9b commit 009c215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/database.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class PgStacDatabase extends Construct {
1616
db: rds.DatabaseInstance;
1717
pgstacSecret: secretsmanager.ISecret;
1818

19-
constructor(scope: Construct, id: string, props: Props) {
19+
constructor(scope: Construct, id: string, props: PgStacDatabaseProps) {
2020
super(scope, id);
2121

2222
const parameterGroup = new rds.ParameterGroup(this, "parameterGroup", {
@@ -55,4 +55,4 @@ export class PgStacDatabase extends Construct {
5555
}
5656
}
5757

58-
export interface Props extends rds.DatabaseInstanceProps {}
58+
export interface PgStacDatabaseProps extends rds.DatabaseInstanceProps {}

0 commit comments

Comments
 (0)