Skip to content

Commit

Permalink
flip usage
Browse files Browse the repository at this point in the history
  • Loading branch information
reggi committed Sep 20, 2024
1 parent 7eecc99 commit a2ea4c5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ interface Dist {
unpackedSize?: number
}

interface DevEngineDependency {
name: string
version?: string
onFail?: 'ignore' | 'warn' | 'error' | 'download'
}

interface DevEngines {
os?: DevEngineDependency | DevEngineDependency[]
cpu?: DevEngineDependency | DevEngineDependency[]
Expand All @@ -94,12 +100,6 @@ interface DevEngines {
packageManager?: DevEngineDependency | DevEngineDependency[]
}

interface DevEngineDependency {
name: string
version?: string
onFail?: 'ignore' | 'warn' | 'error' | 'download'
}

// this is in the tarball for the project. it really could have anything in it.
export interface PackageJSON {
author?: Contact | string
Expand Down

0 comments on commit a2ea4c5

Please sign in to comment.