Updated API report
Signed-off-by: Damon Kaswell <damon.kaswell1@hp.com>
This commit is contained in:
committed by
Fredrik Adelöw
parent
5b850ac022
commit
25da47e68d
@@ -19,11 +19,17 @@ import { Router } from 'express';
|
||||
import type { UrlReader } from '@backstage/backend-common';
|
||||
|
||||
// @public
|
||||
export interface EntityIteratorResult<T> {
|
||||
cursor?: T;
|
||||
done: boolean;
|
||||
entities?: DeferredEntity[];
|
||||
}
|
||||
export type EntityIteratorResult<T> =
|
||||
| {
|
||||
done: false;
|
||||
entities: DeferredEntity[];
|
||||
cursor: T;
|
||||
}
|
||||
| {
|
||||
done: true;
|
||||
entities?: DeferredEntity[];
|
||||
cursor?: T;
|
||||
};
|
||||
|
||||
// @public
|
||||
export const INCREMENTAL_ENTITY_PROVIDER_ANNOTATION =
|
||||
|
||||
Reference in New Issue
Block a user