@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
23 lines (22 loc) • 600 B
TypeScript
/**
* Default keyword lists omit longer phrases when a shorter phrase in the same list already
* matches as a whole word within them (case-insensitive), e.g. drop `in summary` when `summary`
* is present.
*/
export declare const aiAutocompleteMessages: {
conclusionKeywords: {
defaultMessage: string;
description: string;
id: string;
};
nextStepsKeywords: {
defaultMessage: string;
description: string;
id: string;
};
summaryKeywords: {
defaultMessage: string;
description: string;
id: string;
};
};