Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions plugin-api-standalone.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10243,6 +10243,13 @@ interface ExtendedVariableCollection extends Omit<VariableCollection, 'addMode'>
* The ID of the parent variable collection.
*/
readonly parentVariableCollectionId: string
/**
* The ID of the root variable collection in the extension chain.
* This is the collection ID at the top of the parent chain.
* For example, if Collection C extends B which extends A (root),
* then `rootVariableCollectionId` is A's ID.
*/
readonly rootVariableCollectionId: string
/**
* The list of variables contained in this extended variable collection including variables that are inherited from its parent collection.
*/
Expand Down
7 changes: 7 additions & 0 deletions plugin-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10239,6 +10239,13 @@ interface ExtendedVariableCollection extends Omit<VariableCollection, 'addMode'>
* The ID of the parent variable collection.
*/
readonly parentVariableCollectionId: string
/**
* The ID of the root variable collection in the extension chain.
* This is the collection ID at the top of the parent chain.
* For example, if Collection C extends B which extends A (root),
* then `rootVariableCollectionId` is A's ID.
*/
readonly rootVariableCollectionId: string
/**
* The list of variables contained in this extended variable collection including variables that are inherited from its parent collection.
*/
Expand Down