mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Restore RequirementVersionRange type
This commit is contained in:
parent
646b340e8e
commit
590ccbe3d0
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue