Spaces:
Sleeping
Sleeping
File size: 458 Bytes
04f98c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export interface IViewPortSize {
width: number;
height: number;
}
export declare type Axis = 'x' | 'y';
export default class ViewPort {
viewPorts: IViewPortSize[];
clear(): void;
setCurrent(width: number, height: number): void;
removeCurrent(): void;
getCurrent(): IViewPortSize;
get width(): number;
get height(): number;
computeSize(d?: number | Axis): number;
}
//# sourceMappingURL=ViewPort.d.ts.map |