constructor()

in src/manifestList.ts [115:130]


    constructor(public readonly uri: vscode.Uri, auth?: AuthMetadata) {
        super(
            path.relative(
                (vscode.workspace.workspaceFolders as vscode.WorkspaceFolder[])[0].uri.path,
                uri.path
            ),
            vscode.TreeItemCollapsibleState.Expanded
        );
        if (auth) {
            this.auth = auth;
        }
        super.iconPath = {
            light: path.join(RESOURCE_PATH, 'light', 'manifest.svg'),
            dark: path.join(RESOURCE_PATH, 'dark', 'manifest.svg'),
        };
    }