Add declaration file for resolveConfig (#8924)

* add declaration file for resolveConfig

* alter spacing to match other .d.ts files
This commit is contained in:
Josh Michaels 2022-07-25 13:54:25 -05:00 committed by GitHub
parent b311c203d9
commit 76f02e407e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
resolveConfig.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
import type { Config } from './types/config'
declare function resolveConfig(config: Config): Config
export = resolveConfig