fix: run yarn spec

This commit is contained in:
Jingjing
2025-12-11 14:08:22 +01:00
parent b57decdf8f
commit 884055b9a9
2 changed files with 38 additions and 0 deletions

View File

@@ -1991,6 +1991,36 @@
}
}
},
"sortSelections": {
"description": "Sort items shown in current selections toolbar.\nThe order is as follows:\n\t1. qOneAndOnlyOne\n\t2. qSortIndex",
"kind": "function",
"params": [
{
"name": "a",
"kind": "union",
"items": [
{
"type": "Item"
},
{
"type": "Object"
}
]
},
{
"name": "b",
"kind": "union",
"items": [
{
"type": "Item"
},
{
"type": "Object"
}
]
}
]
},
"Navigation": {
"stability": "experimental",
"availability": {

View File

@@ -632,6 +632,14 @@ declare namespace stardust {
}
/**
* Sort items shown in current selections toolbar.
* The order is as follows:
* 1. qOneAndOnlyOne
* 2. qSortIndex
*/
type sortSelections = (a: Item | Object, b: Item | Object)=>void;
class Navigation implements stardust.Emitter {
constructor();