mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-31 05:57:33 +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
|