@storm-software/k8s-tools
Version:
Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.
12 lines (10 loc) • 368 B
TypeScript
/**
* Decorator to ensure the class is initialized before executing a method
*
* @param {any} target
* @param {string} propertyKey
* @param {PropertyDescriptor} descriptor
* @returns {PropertyDescriptor}
*/
declare const ensureInitialized: (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
export { ensureInitialized };