blockbench-types 4.12.0 → 4.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +4 -0
- package/package.json +2 -2
- package/scripts/generate_docs.js +18 -19
- package/tsconfig.json +2 -1
- package/types/action.d.ts +576 -559
- package/types/animation.d.ts +24 -0
- package/types/blockbench.d.ts +4 -1
- package/types/canvas.d.ts +4 -1
- package/types/collection.d.ts +23 -23
- package/types/cube.d.ts +16 -16
- package/types/dialog.d.ts +2 -2
- package/types/format.d.ts +1 -3
- package/types/global.d.ts +18 -20
- package/types/group.d.ts +9 -7
- package/types/interface.d.ts +13 -9
- package/types/misc.d.ts +3 -0
- package/types/mode.d.ts +4 -0
- package/types/outliner.d.ts +1 -1
- package/types/plugin.d.ts +5 -0
- package/types/shared_actions.d.ts +5 -3
- package/types/texture_group.d.ts +53 -58
- package/types/textures.d.ts +443 -425
- package/types/undo.d.ts +0 -2
package/types/undo.d.ts
CHANGED
|
@@ -107,7 +107,6 @@ type UndoEntry = {
|
|
|
107
107
|
time: number
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
|
|
111
110
|
declare class UndoSystem {
|
|
112
111
|
constructor()
|
|
113
112
|
/**
|
|
@@ -191,4 +190,3 @@ Undo.finishEdit('Add new cubes', {elements: [new_cube, other_cube]});
|
|
|
191
190
|
```
|
|
192
191
|
*/
|
|
193
192
|
declare let Undo: UndoSystem
|
|
194
|
-
|