UNPKG
@tecfancy/init
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
TecFancy Init
github.com/TecFancy/tecfancy-cli
TecFancy/tecfancy-cli
@tecfancy/init
/
lib
/
index.d.ts
12 lines
(11 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
interface
OptionsType
{
force
?:
boolean
;
china
?:
boolean
; }
/** * Initialize the project *
@param
projectName project name *
@param
options options */
declare
function
init
(
projectName
:
string
|
undefined
,
options
:
OptionsType
):
Promise
<
void
>;
export
default
init;