mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
export interface Driveable {
|
|
drive(distance: number): boolean;
|
|
}
|
|
|
|
export default class Car implements Driveable {
|
|
public drive(distance: number): boolean {
|
|
return true;
|
|
}
|
|
}
|