added track adoption annotations (#140690) (#141377)

(cherry picked from commit aae100f709)

Co-authored-by: Jean-Louis Leysens <jeanlouis.leysens@elastic.co>
This commit is contained in:
Kibana Machine 2022-09-22 05:36:44 -06:00 committed by GitHub
parent eac50092de
commit f5cbe25d0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -22,6 +22,8 @@ export interface FilesSetup {
/**
* A factory for creating an {@link FilesClient} instance. This requires a
* registered {@link FileKind}.
*
* @track-adoption
*/
filesClientFactory: FilesClientFactory;

View file

@ -18,6 +18,8 @@ export interface FilesSetup {
* that will be uploaded.
*
* @param {FileKind} fileKind - the file kind to register
*
* @track-adoption
*/
registerFileKind(fileKind: FileKind): void;
}
@ -33,6 +35,8 @@ export interface FilesPluginSetupDependencies {
export interface FilesStart {
/**
* Create an instance of {@link FileServiceStart}.
*
* @track-adoption
*/
fileServiceFactory: FileServiceFactory;
}