@aminya/dotenv-vault
Version:
A secrets manager for .env files – from the same people that pioneered dotenv.
17 lines (16 loc) • 491 B
TypeScript
import { Command } from '@oclif/core';
export default class Pull extends Command {
static description: string;
static examples: string[];
static args: {
name: string;
required: boolean;
description: string;
hidden: boolean;
}[];
static flags: {
dotenvMe: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
yes: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
run(): Promise<void>;
}