docs: more precise description for exports in Extension (#144947)

more precise description for exports in Extension
This commit is contained in:
Akat
2022-03-16 07:29:54 +08:00
committed by GitHub
parent 5ac5b967ce
commit ef3ebd85d9

View File

@@ -6538,8 +6538,8 @@ declare module 'vscode' {
extensionKind: ExtensionKind;
/**
* The public API exported by this extension. It is an invalid action
* to access this field before this extension has been activated.
* The public API exported by this extension (return value of `activate`).
* It is an invalid action to access this field before this extension has been activated.
*/
readonly exports: T;