DefinitelyTyped/types/find-down/find-down-tests.ts
2019-04-01 17:33:05 +02:00

14 lines
305 B
TypeScript

import findDown = require('find-down');
findDown('unicorn.png').then(file => {
file; // $ExpectType string | null
});
findDown(['unicorn.png']).then(file => {
file; // $ExpectType string | null
});
findDown('unicorn.png', { cwd: '.' }).then(file => {
file; // $ExpectType string | null
});