mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
262 B
TypeScript
7 lines
262 B
TypeScript
import findConfig = require('find-config');
|
|
|
|
findConfig(); // $ExpectType string | null
|
|
findConfig.obj(); // $ExpectType { cwd: string; dir: string; path: string; } | null
|
|
findConfig.read(); // $ExpectType string | null
|
|
findConfig.require(); // $ExpectType any
|