You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Tools: Add class member accessibility modifiers and converted rule @typescript-eslint/explicit-member-accessibility to an error
This commit is contained in:
@ -3,22 +3,22 @@ abstract class KeychainServiceDriverBase {
|
||||
private appId_: string;
|
||||
private clientId_: string;
|
||||
|
||||
constructor(appId: string, clientId: string) {
|
||||
public constructor(appId: string, clientId: string) {
|
||||
this.appId_ = appId;
|
||||
this.clientId_ = clientId;
|
||||
}
|
||||
|
||||
get appId(): string {
|
||||
public get appId(): string {
|
||||
return this.appId_;
|
||||
}
|
||||
|
||||
get clientId(): string {
|
||||
public get clientId(): string {
|
||||
return this.clientId_;
|
||||
}
|
||||
|
||||
abstract setPassword(name: string, password: string): Promise<boolean>;
|
||||
abstract password(name: string): Promise<string>;
|
||||
abstract deletePassword(name: string): Promise<void>;
|
||||
public abstract setPassword(name: string, password: string): Promise<boolean>;
|
||||
public abstract password(name: string): Promise<string>;
|
||||
public abstract deletePassword(name: string): Promise<void>;
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user