@wocker/ws
Version:
Docker workspace for web projects
9 lines (8 loc) • 403 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>;
}