heroku
Version:
CLI to interact with Heroku
14 lines (13 loc) • 765 B
TypeScript
import { PGSettingsCommand, BooleanAsString } from '../../../../lib/pg/setter';
import { SettingKey, Setting } from '../../../../lib/pg/types';
export default class LogAnalyze extends PGSettingsCommand {
static topic: string;
static description: string;
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 convertValue(val: BooleanAsString): boolean;
protected explain(setting: Setting<boolean>): "EXPLAIN ANALYZE execution plans will be logged." | "EXPLAIN ANALYZE execution plans will not be logged.";
}