Guest User

Untitled

a guest
Jun 13th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Circle extends Shape {
  2. private radius: number;
  3. color: string;
  4.  
  5. constructor(shape) {
  6. super(shape);
  7. if (shape.type = circle)
  8. this.radius = shape.radius;
  9. this.color = shape.color;
  10. }
Add Comment
Please, Sign In to add comment