UNPKG

heroku

Version:

CLI to interact with Heroku

13 lines (12 loc) 611 B
import { PGSettingsCommand } from '../../../../lib/pg/setter'; import { Setting, SettingKey } from '../../../../lib/pg/types'; export default class LogFormat extends PGSettingsCommand { 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 explain(setting: Setting<string>): string; protected convertValue(val: string): string; }