Archived
1
0

plugin.ts: Add homepageURL to plugin and application

This commit is contained in:
Anmol Sethi
2020-11-03 21:45:25 -05:00
parent 687094802e
commit 2a13d003d3
4 changed files with 18 additions and 0 deletions

View File

@ -87,6 +87,11 @@ export interface Plugin {
*/
readonly routerPath: string
/**
* Link to plugin homepage.
*/
readonly homepageURL: string
/**
* init is called so that the plugin may initialize itself with the config.
*/
@ -144,4 +149,9 @@ export interface Application {
* <code-server-root>/<plugin-path>/<app-path>/<icon-path>
*/
readonly iconPath: string
/**
* Link to application homepage.
*/
readonly homepageURL: string
}