UNPKG
@kform/scaffolder
Version:
latest (0.30.0)
0.30.0
0.29.1
0.29.0
0.28.2
0.28.1
0.28.0
0.27.5
0.27.4
0.27.3
0.27.2
0.27.1
0.27.0
0.27.0-beta.20
0.27.0-beta.19
0.27.0-beta.18
0.27.0-beta.17
0.27.0-beta.16
0.27.0-beta.15
0.27.0-beta.14
0.27.0-beta.13
0.27.0-beta.12
0.27.0-beta.11
0.27.0-beta.10
0.27.0-beta.9
0.27.0-beta.8
0.27.0-beta.7
0.27.0-beta.6
0.27.0-beta.5
0.27.0-beta.4
0.27.0-beta.3
0.27.0-beta.2
0.27.0-beta.1
0.27.0-beta.0
Scaffolding utilities for KForm projects.
bitbucket.org/opensoftgitrepo/kform
@kform/scaffolder
/
types
/
scaffolding
/
typescript
/
TsFile.d.ts
8 lines
(7 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ScaffoldingFile
}
from
"../ScaffoldingFile"
;
import
{
TsImport
}
from
"./TsImport"
;
export
interface
TsFile
extends
ScaffoldingFile
{
imports
:
TsImport
[];
declarations
:
string
[]; }
export
declare
function
tsFile
(
):
TsFile
;