/** * Copyright 2023 Fluence Labs Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { BaseCommand } from "../../baseCommand.js"; export default class Logs extends BaseCommand { static description: string; static examples: string[]; static flags: { tracing: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; "worker-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "host-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "spell-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "priv-key": import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "off-aqua-logs": import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; sk: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; env: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; relay: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; ttl: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "dial-timeout": import("@oclif/core/lib/interfaces/parser.js").OptionFlag; "particle-id": import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; "no-input": import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static args: { "WORKER-NAMES": import("@oclif/core/lib/interfaces/parser.js").Arg>; }; run(): Promise; }