mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-08 18:02:52 +00:00
6 lines
228 B
TypeScript
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
|