UNPKG

heroku

Version:

CLI to interact with Heroku

19 lines (18 loc) 989 B
import { BooleanAsString, PGSettingsCommand } from '../../../lib/pg/setter'; import { Setting, SettingKey } from '../../../lib/pg/types'; export default class AutoExplain 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>>; }; static strict: boolean; protected settingKey: SettingKey; protected convertValue(val: BooleanAsString): boolean; protected explain(setting: Setting<boolean>): string; }