create-testplane
Version:
A tool for fast and simple Testplane configuration
10 lines (9 loc) • 332 B
TypeScript
import { Language } from "../../types";
export type ConfigTemplate = {
quote: "'" | '"' | "`";
language: Language;
fileName: string;
getImportModule(importName: string, moduleName: string): string;
getExportConfig(config: string): string;
};
export declare const getTemplate: (lang: Language) => ConfigTemplate;