ts-learnings/projects/references/IShape.ts
rust-lang.xfoss.com 4e70b88dff Moved to mdbook.
2023-03-28 09:46:23 +08:00

6 lines
80 B
TypeScript

namespace Drawing {
export interface IShape {
draw(): void;
}
}