openreachtech / eslint-config-openreachtech

ESLint config by Open Reach Tech inc.
MIT License
0 stars 0 forks source link

⚒ Add types file for main exports #303

Closed StewEucen closed 3 months ago

StewEucen commented 3 months ago

Overview

Add types file for main exports

Code

types/index.d.ts

  import {
    Linter,
  } from 'eslint'

  declare module '@openreachtech/eslint-config' {
    const configurations: Array<Linter.FlatConfig>

    export = configurations
  }