k8ts
Version:
Powerful framework for building Kubernetes manifests in TypeScript.
14 lines (13 loc) • 394 B
text/typescript
import { Resource_Node } from "@k8ts/instruments"
import { FileNodes } from "./assembler"
export interface ValidatingEvent {
node: Resource_Node
}
export interface ValidatorEventsTable {
validating: ValidatingEvent
}
export interface ValidatorOptions {}
export class NodeGraphValidator {
constructor(readonly options: ValidatorOptions) {}
validate(collection: FileNodes[]) {}
}