kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
13 lines • 451 B
TypeScript
import type { BaseConnector } from '@kubricate/core';
/**
* InMemoryConnector is a simple in-memory connector for secrets.
* For testing purposes only.
*/
export declare class InMemoryConnector implements BaseConnector {
config: Record<string, string>;
private loaded;
constructor(config: Record<string, string>);
load(names: string[]): Promise<void>;
get(name: string): string;
}
//# sourceMappingURL=InMemoryConnector.d.ts.map