import { IDevKnativeServingPkgApisServingV1TrafficTarget } from "./TrafficTarget.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * RouteSpec holds the desired state of the Route (from the client). */ export interface IRouteSpec { /** * Traffic specifies how to distribute traffic over a collection of * revisions and configurations. */ "traffic"?: Array; } /** * RouteSpec holds the desired state of the Route (from the client). */ export declare class RouteSpec extends Model implements IRouteSpec { "traffic"?: Array; constructor(data?: ModelData); } export type { IRouteSpec as IDevKnativeServingPkgApisServingV1RouteSpec, RouteSpec as DevKnativeServingPkgApisServingV1RouteSpec };