import { IDevKnativeEventingPkgApisDuckV1SubscriberSpec } from "./SubscriberSpec.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * SubscribableSpec shows how we expect folks to embed Subscribable in their Spec field. */ export interface ISubscribableSpec { /** * This is the list of subscriptions for this subscribable. */ "subscribers"?: Array; } /** * SubscribableSpec shows how we expect folks to embed Subscribable in their Spec field. */ export declare class SubscribableSpec extends Model implements ISubscribableSpec { "subscribers"?: Array; constructor(data?: ModelData); } export type { ISubscribableSpec as IDevKnativeEventingPkgApisDuckV1SubscribableSpec, SubscribableSpec as DevKnativeEventingPkgApisDuckV1SubscribableSpec };