@reliverse/rse-sdk
Version:
@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).
9 lines (8 loc) • 360 B
TypeScript
import type { ProjectConfig } from "../../types.js";
export interface EnvVariable {
key: string;
value: string | null | undefined;
condition: boolean;
}
export declare function addEnvVariablesToFile(filePath: string, variables: EnvVariable[]): Promise<void>;
export declare function setupEnvironmentVariables(config: ProjectConfig): Promise<void>;