mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +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
|