@wocker/ws
Version:
Docker workspace for web projects
12 lines (11 loc) • 598 B
TypeScript
import { AppConfigService } from "@wocker/core";
import { KeystoreService } from "../services/KeystoreService";
export declare class KeystoreController {
protected readonly appConfigService: AppConfigService;
protected readonly keystoreService: KeystoreService;
constructor(appConfigService: AppConfigService, keystoreService: KeystoreService);
init(provider?: string): Promise<void>;
add(name?: string, provider?: string): Promise<void>;
inspect(name?: string, provider?: string): Promise<string | undefined>;
delete(name?: string, provider?: string): Promise<void>;
}