Skip to content

Commit

Permalink
feat(lint-synthesized): Pluck constructor type
Browse files Browse the repository at this point in the history
  • Loading branch information
langri-sha committed Apr 29, 2024
1 parent b21efdf commit 51b1580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/projen-lint-synthesized/src/index.ts
Original file line number Diff line number Diff line change
@@ -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<typeof Component>[0]) {
super(scope, 'lint-synthesized')

debug('Initialized')
}
Expand Down

0 comments on commit 51b1580

Please sign in to comment.