@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 343 B
TypeScript
import { SafeKeyValueString } from '../../complexType/SafeKeyValueString';
/** Route of the service */
export interface Route {
/** Path to use in API */
path?: string;
/** Path with variables applied */
url?: string;
/** Variables to use in the path */
vars: SafeKeyValueString[];
}
//# sourceMappingURL=Route.d.ts.map