mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-04 07:52:51 +00:00
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import username = require('git-username');
|
|
|
|
username('some/path'); // $ExpectType string | null
|
|
username({ cwd: 'some/path' }); // $ExpectType string | null
|
|
username({ strict: true }); // $ExpectType string
|