kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
8 lines • 389 B
TypeScript
import type { PreparedEffect } from '@kubricate/core';
/**
* Creates a reusable handler to merge multiple Raw Secret effects.
* Will group by Secret `storeName` and merge `.data`.
* Throws error if duplicate keys are found within the same store.
*/
export declare function createMergeHandler(): (effects: PreparedEffect[]) => PreparedEffect[];
//# sourceMappingURL=merge-utils.d.ts.map