Files
Remote-Control-Center/mc_test/node_modules/dotenv-expand/index.d.ts
2025-11-25 09:56:15 +03:00

16 lines
261 B
TypeScript
Executable File

export = dotenv_expand;
interface DotenvResult {
error?: Error;
parsed?: {
[name: string]: string;
};
}
declare function dotenv_expand(config: DotenvResult): DotenvResult;
declare namespace dotenv_expand {
const prototype: {
};
}