@kubernetes-models/flux-cd
Version:
9 lines (8 loc) • 452 B
TypeScript
import { IComGithubFluxcdPkgApisMetaSnapshot } from "./Snapshot.js";
/**
* History represents a collection of snapshots that tracks the reconciliation
* history of a group of resources, automatically sorted by last reconciled timestamp.
*/
export type IHistory = Array<IComGithubFluxcdPkgApisMetaSnapshot>;
export type History = IHistory;
export type { IHistory as IComGithubFluxcdPkgApisMetaHistory, History as ComGithubFluxcdPkgApisMetaHistory };