UNPKG
generator-brain
Version:
latest (0.0.20)
0.0.20
0.0.19
0.0.18
A yeoman generator used for legion framework to create scaffold
generator-brain
/
generators
/
template
/
index.d.ts
9 lines
(8 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
BaseGenerator
from
'../../src/generator/BaseGenerator'
;
declare
class
TemplateGenerator
extends
BaseGenerator
{
constructor
(
args
:
any
,
opts
:
any
);
prompting
():
any
;
writing
():
void
;
end
():
void
; }
export
=
TemplateGenerator
;