API generation

This commit is contained in:
delvedor
2020-11-24 09:50:47 +01:00
parent 959aee5903
commit 8cbb54016a
5 changed files with 62 additions and 0 deletions

View File

@ -1998,6 +1998,11 @@ export interface RollupPutJob<T = RequestBody> extends Generic {
body: T;
}
export interface RollupRollup<T = RequestBody> extends Generic {
index: string;
body: T;
}
export interface RollupRollupSearch<T = RequestBody> extends Generic {
index: string | string[];
type?: string;