UNPKG
harmonyc
Version:
latest (0.25.0)
0.25.0
0.24.0
0.23.3
0.23.2
0.23.1
0.23.0
0.22.1
0.22.0
0.21.0
0.20.0
0.19.0
0.18.1
0.18.0
0.17.0
0.16.4
0.16.3
0.16.2
0.16.1
0.16.0
0.15.0
0.14.1
0.14.0
0.13.0
0.12.2
0.12.1
0.12.0
0.11.2
0.11.1
0.11.0
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.0
0.8.2
0.8.1
0.8.0
0.7.2
0.7.1
0.7.0
0.6.0-9
0.6.0-8
0.6.0-7
0.6.0-6
0.6.0-5
0.6.0-4
0.6.0-3
0.6.0-2
0.6.0-1
0.6.0-0
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.2.0
0.1.1
0.1.0
Harmony Code - model-driven BDD for Vitest
github.com/harmony-ac/code
harmony-ac/code
harmonyc
/
compiler
/
compile.d.ts
10 lines
(9 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
OutFile
}
from
'../code_generator/outFile.ts'
;
export
interface
CompiledFeature
{
name
:
string
;
code
:
Record
<
string
,
string
>; }
export
declare
function
compileFeature
(
fileName
:
string
,
src
:
string
): {
outFile
:
OutFile
;
phrasesFile
:
OutFile
; };