UNPKG
@mutasim77/loc-counter
Version:
latest (1.0.0)
1.0.0
A powerful lines of code counter with detailed statistics
@mutasim77/loc-counter
/
dist
/
utils
/
fileUtils.d.ts
8 lines
(7 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
FileFilterOptions
{
exclude
:
string
[];
include
:
string
[];
useGitignore
:
boolean
; }
export
declare
function
getFilePaths
(
directory
:
string
,
options
:
FileFilterOptions
):
Promise
<
string
[]>;
export
declare
function
readFileContent
(
filePath
:
string
):
Promise
<
string
>;