mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 17:59:50 +02:00
chore: add max-params eslint rule
This commit is contained in:
parent
3c2b57cfc5
commit
73a0af4613
17 changed files with 79 additions and 54 deletions
|
@ -14,22 +14,22 @@ import { ConcatStringStream, TextDecoderStream } from "@yume-chan/stream-extra";
|
|||
|
||||
export class Cmd extends AdbCommandBase {
|
||||
#supportsShellV2: boolean;
|
||||
get supportsShellV2() {
|
||||
get supportsShellV2(): boolean {
|
||||
return this.#supportsShellV2;
|
||||
}
|
||||
|
||||
#supportsCmd: boolean;
|
||||
get supportsCmd() {
|
||||
get supportsCmd(): boolean {
|
||||
return this.#supportsCmd;
|
||||
}
|
||||
|
||||
#supportsAbb: boolean;
|
||||
get supportsAbb() {
|
||||
get supportsAbb(): boolean {
|
||||
return this.#supportsAbb;
|
||||
}
|
||||
|
||||
#supportsAbbExec: boolean;
|
||||
get supportsAbbExec() {
|
||||
get supportsAbbExec(): boolean {
|
||||
return this.#supportsAbbExec;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue