fix api report

Signed-off-by: Aramis <sennyeyaramis@gmail.com>
Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
Aramis
2024-02-02 16:42:47 -05:00
committed by aramissennyeydd
parent 447d8b6fcf
commit af751400d6
3 changed files with 8 additions and 1 deletions
+5
View File
@@ -421,6 +421,11 @@ export type PlaceholderResolverRead = PlaceholderResolverRead_2;
// @public @deprecated (undocumented)
export type PlaceholderResolverResolveUrl = PlaceholderResolverResolveUrl_2;
// @public
export function policyToProcessorTransformer(
policy: EntityPolicy,
): CatalogProcessor_2;
// @public
export type ProcessingIntervalFunction = () => number;
@@ -24,3 +24,4 @@ export { PlaceholderProcessor } from './PlaceholderProcessor';
export type { PlaceholderProcessorOptions } from './PlaceholderProcessor';
export { UrlReaderProcessor } from './UrlReaderProcessor';
export { parseEntityYaml } from '../util/parse';
export { policyToProcessorTransformer } from './policyToProcessorTransformer';
@@ -19,8 +19,9 @@ import { CatalogProcessor } from '@backstage/plugin-catalog-node';
/**
* Transform a given entity policy to an entity processor.
* @param policy The policy to transform
* @param policy - The policy to transform
* @returns A new entity processor that uses the entity policy.
* @public
*/
export function policyToProcessorTransformer(
policy: EntityPolicy,