@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 443 B
TypeScript
/** Information needed to create a new website */
export interface CreationRequest {
/** Relative path on the hosting filesystem the website will be deployed into */
path: string;
/** Branch of the repository containing the website source code to deploy */
vcsBranch: string;
/** Clone URL of the repository containing the website source code to deploy */
vcsUrl: string;
}
//# sourceMappingURL=CreationRequest.d.ts.map