Update api report for new exports

Signed-off-by: Brian Phillips <28457+brianphillips@users.noreply.github.com>
This commit is contained in:
Brian Phillips
2023-03-17 09:34:42 -05:00
parent 642e39be29
commit a90f4d235e
+15
View File
@@ -355,6 +355,16 @@ export const EntityListContainer: (props: {
// @public
export function EntityOrphanWarning(): JSX.Element;
// Warning: (ae-missing-release-tag) "EntityPredicates" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface EntityPredicates {
// (undocumented)
kind?: string | string[];
// (undocumented)
type?: string | string[];
}
// @public
export function EntityProcessingErrorsPanel(): JSX.Element | null;
@@ -433,6 +443,11 @@ export function isComponentType(
types: string | string[],
): (entity: Entity) => boolean;
// @public
export function isEntityWith(
predicate: EntityPredicates,
): (entity: Entity) => boolean;
// @public
export function isKind(kinds: string | string[]): (entity: Entity) => boolean;