Restore RequirementVersionRange type

This commit is contained in:
John Schulz 2019-11-19 12:54:31 -05:00
parent 646b340e8e
commit 590ccbe3d0

View file

@ -34,13 +34,14 @@ export interface ScreenshotItem {
title?: string;
}
export type ServiceName = 'kibana' | 'elasticsearch';
// from /package/{name}
// https://github.com/elastic/package-registry/blob/master/docs/api/package.json
export type ServiceName = 'kibana' | 'elasticsearch';
export type RequirementVersion = string;
export type RequirementVersionRange = string;
export interface ServiceRequirements {
versions: string;
versions: RequirementVersionRange;
}
// from /categories