mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Ensure increasing ordinals of new masks
* Add fabric.d.ts
* Revert "Ensure increasing ordinals of new masks"
This reverts commit dedfeec9ad
.
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
export {};
|
|
|
|
declare global {
|
|
namespace fabric {
|
|
interface Object {
|
|
id: string;
|
|
ordinal: number;
|
|
/** a custom property set on groups in the ungrouping routine to avoid adding a spurious undo entry */
|
|
destroyed: boolean;
|
|
}
|
|
}
|
|
}
|