heroku
Version:
CLI to interact with Heroku
18 lines (17 loc) • 1.09 kB
TypeScript
import { PGSettingsCommand } from '../../../../lib/pg/setter';
import type { Setting, SettingKey } from '../../../../lib/pg/types';
export default class AutoExplainLogVerbose extends PGSettingsCommand {
static topic: string;
static description: string;
static flags: {
app: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
remote: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};
static args: {
database: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>;
value: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>;
};
protected settingKey: SettingKey;
protected explain(setting: Setting<unknown>): "Verbose execution plan logging has been enabled for auto_explain." | "Verbose execution plan logging has been disabled for auto_explain.";
protected convertValue(val: unknown): boolean;
}