UNPKG

@teambit/workspace

Version:
10 lines (9 loc) 541 B
import { ComponentIdList } from '@teambit/component-id'; import type { Consumer } from '@teambit/legacy.consumer'; import type { ConsumerComponent as Component } from '@teambit/legacy.consumer-component'; export declare function getAutoTagPending(consumer: Consumer, changedComponents: ComponentIdList): Promise<Component[]>; export type AutoTagResult = { component: Component; triggeredBy: ComponentIdList; }; export declare function getAutoTagInfo(consumer: Consumer, changedComponents: ComponentIdList): Promise<AutoTagResult[]>;