import { IDevKnativeEventingPkgApisSourcesV1PingSource } from "./PingSource.js"; import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta"; import { ModelData, TypeMeta, Model } from "@kubernetes-models/base"; /** * PingSourceList contains a list of PingSources. */ export interface IPingSourceList extends TypeMeta { "apiVersion": "sources.knative.dev/v1"; "items": Array; "kind": "PingSourceList"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; } /** * PingSourceList contains a list of PingSources. */ export declare class PingSourceList extends Model implements IPingSourceList { "apiVersion": "sources.knative.dev/v1"; "items": Array; "kind": "PingSourceList"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; static apiVersion: IPingSourceList["apiVersion"]; static kind: IPingSourceList["kind"]; static is: import("@kubernetes-models/base").TypeMetaGuard; constructor(data?: ModelData); } export type { IPingSourceList as IDevKnativeEventingPkgApisSourcesV1PingSourceList, PingSourceList as DevKnativeEventingPkgApisSourcesV1PingSourceList };