@zxh19890103/wik
Version:
The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.
12 lines (11 loc) • 347 B
TypeScript
import { WithParent } from '../interfaces';
import { IWarehouse } from './IWarehouse';
export interface IWarehouseObjectList extends WithParent<IWarehouse> {
readonly scene: unknown;
readonly mounted: boolean;
mount(root: unknown): void;
unmount(): void;
}
export interface WithWarehouseRef<W = IWarehouse> {
$$warehouse: W;
}