UNPKG
node-ff
Version:
latest (2.0.0)
2.0.0
1.5.0
1.1.0
A CLI for creating NodeJs projects
github.com/FelipeNevess/Node-CLI
FelipeNevess/Node-CLI
node-ff
/
app
/
src
/
utils
/
write
/
interface
/
IWriteFile.ts
8 lines
(7 loc)
•
221 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
interface
IWriteFiles
{
filename
:
string
|
Array
<
string
>;
text
:
string
|
Array
<
string
>;
directory_name
:
string
|
Array
<
string
>;
formate
?:
boolean
|
Array
<
boolean
>;
json
?:
object
|
Array
<
object
>; }