Skip to content

Commit

Permalink
chore: satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Apr 22, 2024
1 parent 904c842 commit 351f763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/version.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {Command, Flags, Interfaces} from '@oclif/core'
import {EOL} from 'node:os'

export type VersionDetail = Omit<Interfaces.VersionDetails, 'pluginVersions'> & {
export type VersionDetail = {
pluginVersions?: string[]
}
} & Omit<Interfaces.VersionDetails, 'pluginVersions'>

export default class Version extends Command {
static enableJsonFlag = true
Expand Down

0 comments on commit 351f763

Please sign in to comment.