@synthart/synthlite
Version:
A fast, lightweight Gen AI powered synthetic data generator written in TypeScript. 🌞
18 lines (17 loc) • 413 B
TypeScript
/**
* Config: Handles configuration operations.
* @class Config
*/
export declare class Config {
/**
* Asserts the presence of AI configuration in the environment.
* @returns void
*/
static assertAIConfig(): void;
/**
* Loads the environment file.
* @param envPath The path to the environment file.
* @returns void
*/
static loadEnv(envPath: string): void;
}