todo-backend: mark public API as public

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-02-21 14:56:26 +01:00
parent 58814d6d4c
commit 9913f61e7a
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ export type TodoParserResult = {
lineNumber: number;
};
// @alpha
// @public
export const todoPlugin: () => BackendFeature;
// @public (undocumented)
@@ -118,7 +118,7 @@ export type TodoReaderServiceOptions = {
defaultPageSize?: number;
};
// @alpha (undocumented)
// @public (undocumented)
export const todoReaderServiceRef: ServiceRef<TodoReader, 'plugin'>;
// @public (undocumented)
@@ -174,7 +174,7 @@ export class TodoScmReader implements TodoReader {
}
/**
* @alpha
* @public
*/
export const todoReaderServiceRef = createServiceRef<TodoReader>({
id: 'todo.todoReader',
+1 -1
View File
@@ -24,7 +24,7 @@ import { createRouter } from './service/router';
/**
* The Todos plugin is responsible for aggregating todo comments within source.
* @alpha
* @public
*/
export const todoPlugin = createBackendPlugin({
pluginId: 'todo-backend',