mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-18 20:39:48 +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
|