diff --git a/packages/projen-lint-synthesized/src/index.ts b/packages/projen-lint-synthesized/src/index.ts index 2c582c07c..7ef2136e6 100644 --- a/packages/projen-lint-synthesized/src/index.ts +++ b/packages/projen-lint-synthesized/src/index.ts @@ -1,11 +1,11 @@ -import { Component, type Project } from 'projen' +import { Component } from 'projen' import { debug as createDebug } from 'debug' const debug = createDebug('projen-lint-synthesized') export class LintSynthesized extends Component { - constructor(parent: Project) { - super(parent, 'lint-synthesized') + constructor(scope: ConstructorParameters[0]) { + super(scope, 'lint-synthesized') debug('Initialized') }