@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 395 B
TypeScript
/** Available route actions options */
export interface RouteAvailableAction {
/** Type of the destination for this action */
destination?: string;
/** Action name */
name: string;
/** List of available HTTP status code if applicable */
status?: number[];
/** Protocol supported by this action */
type: string;
}
//# sourceMappingURL=RouteAvailableAction.d.ts.map