This commit is contained in:
Karlie-777 2022-08-16 14:51:57 -07:00 коммит произвёл GitHub
Родитель 7b1b4e1c06
Коммит fcbf8cf2b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -84,4 +84,11 @@ export interface IPlugin {
* Plugin version (available in data.properties.version in common schema)
*/
readonly version?: string;
/**
* The App Insights core to use for backward compatibility.
* Therefore the interface will be able to access the core without needing to cast to "any".
* [optional] any 3rd party plugins which are already implementing this interface don't fail to compile.
*/
core?: IAppInsightsCore
}