@vulcan-sql/core
Version:
Core package of VulcanSQL
11 lines (10 loc) • 346 B
TypeScript
export declare enum TemplateProviderType {
LocalFile = "LocalFile"
}
export interface ITemplateEngineOptions {
/** The provider that provides template content, it's only required when we want to compile projects. */
provider?: TemplateProviderType | string;
folderPath?: string;
codeLoader?: string;
[key: string]: any;
}