Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
blainekasten committed May 12, 2020
1 parent a3dbbc4 commit 653325c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/gatsby/src/utils/get-latest-apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const ROOT = path.join(__dirname, `..`, `..`)
const OUTPUT_FILE = path.join(ROOT, `latest-apis.json`)

export interface IAPIResponse {
browser: Object
node: Object
ssr: Object
browser: Record<string, any>
node: Record<string, any>
ssr: Record<string, any>
}

export const getLatestAPIs = async (): Promise<IAPIResponse> => {
Expand All @@ -28,7 +28,7 @@ export const getLatestAPIs = async (): Promise<IAPIResponse> => {
return {
browser: {},
node: {},
ssr: {},
ssr: {}
}
})
}
Expand Down

0 comments on commit 653325c

Please sign in to comment.