@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
23 lines • 771 B
TypeScript
import { Constraints } from './config/Constraints';
/** Option configuration */
export interface Config {
/** URL used for Mobile Redirect */
destination?: Constraints;
/** Follow Uri on Mobile Redirect */
followUri?: Constraints;
/** Authorized Origins separated by a comma */
origins?: Constraints;
/** Option pattern type */
patternType?: Constraints;
/** Cache Rule priority (lower is the strongest priority) */
priority?: Constraints;
/** Action to apply on query parameters */
queryParameters?: Constraints;
/** List of URI */
resources?: Constraints;
/** Redirection HTTP Code */
statusCode?: Constraints;
/** Cache time in seconds */
ttl?: Constraints;
}
//# sourceMappingURL=Config.d.ts.map