DefinitelyTyped/types/find-exec/find-exec-tests.ts
Piotr Błażejewicz (Peter Blazejewicz) d3c19af135
feat(find-exec): new definition file (#43186)
- definition file for v1.0
- tests

https://github.com/shime/find-exec#find-exec

Thanks!
2020-03-20 14:01:29 -04:00

6 lines
228 B
TypeScript

import findExec = require('find-exec');
findExec(['mplayer', 'afplay', 'cvlc']); // $ExpectType string | null
// support var args as per implementation details
findExec('mplayer', 'afplay', 'cvlc'); // ExpectType string | null