@aminya/dotenv-vault
Version:
A secrets manager for .env files – from the same people that pioneered dotenv.
23 lines (22 loc) • 556 B
TypeScript
import { LogService } from './log-service';
import { AbortService } from './abort-service';
import { PullService } from './pull-service';
interface ExampleServiceAttrs {
cmd: any;
yes: boolean;
environment?: string;
filename: string;
dotenvMe?: string;
}
declare class ExampleService {
cmd: any;
fileName?: string;
yes: boolean;
log: LogService;
abort: AbortService;
pull: PullService;
environment: string;
constructor(attrs?: ExampleServiceAttrs);
run(): Promise<void>;
}
export { ExampleService };