UNPKG

391 BTypeScriptView Raw
1import type { INode } from '../dom/interfaces';
2export declare class Sortable {
3 static tag: string;
4 /**
5 * need to re-sort
6 */
7 dirty: boolean;
8 /**
9 * sorted child entities
10 */
11 sorted: INode[];
12 /**
13 * index in parent's children
14 */
15 lastSortedIndex: number;
16 /**
17 * render order in whole scenegraph
18 */
19 renderOrder: number;
20}