UNPKG

harmonyc

Version:

Harmony Code - model-driven BDD for Vitest

10 lines (9 loc) 269 B
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; };