Skip to content

Commit

Permalink
fix(cognito): export CustomAttribute abstract class
Browse files Browse the repository at this point in the history
fixes aws#7190
  • Loading branch information
tom139 committed Apr 8, 2020
1 parent 5b29492 commit 4cb27f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-cognito/lib/user-pool-attr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export interface CustomAttributeProps {
* All common properties are set here and the method `baseAttributeConfig`
* should be used by subclasses to create base CustomAttributeConfig object inside the `bind()` method.
*/
abstract class CustomAttribute implements ICustomAttribute {
export abstract class CustomAttribute implements ICustomAttribute {
protected readonly developerOnly?: boolean;
protected readonly mutable?: boolean;

Expand Down

0 comments on commit 4cb27f8

Please sign in to comment.