10 lines
385 B
TypeScript
10 lines
385 B
TypeScript
import { IBoundingBox } from './BoundingBox';
|
|
import { Box } from './Box';
|
|
import { IRect } from './Rect';
|
|
export declare class LabeledBox extends Box<LabeledBox> {
|
|
static assertIsValidLabeledBox(box: any, callee: string): void;
|
|
private _label;
|
|
constructor(box: IBoundingBox | IRect | any, label: number);
|
|
get label(): number;
|
|
}
|
|
//# sourceMappingURL=LabeledBox.d.ts.map
|