weareinreach / InReach

Found explicit type declarations JS-0331
Anti-pattern
Major
1 occurrence in this check
Type boolean trivially inferred from a boolean literal, remove type annotation
  5
  6import type CrowdinApi from '@crowdin/crowdin-api-client'
  7
  8const getProjectId = (isDatabaseString: boolean = false) =>  9	isDatabaseString ? projectId.dbContent : projectId.base
 10
 11export const createCommonFns = (client: CrowdinApi) => {