9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
module es {
|
|
/**
|
|
* 类中用于存储矩形值的矩形封装器
|
|
* ID参数需要连接矩形和原来插入的矩形
|
|
*/
|
|
export class IntegerRectangle extends Rectangle{
|
|
public id: number;
|
|
}
|
|
} |