Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/35-interfaces/20-interface-using/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ interface IPlane extends IFlying {
}

// BEGIN
interface ISuperman extends IBird, IPlane {
interface ISuperMan extends IBird, IPlane {
guessWho: (guess: string) => string;
}

const superMan: ISuperman = {
const superMan: ISuperMan = {
canFly: true,
isLiving: true,
canCarryPeople: true,
Expand All @@ -26,4 +26,4 @@ const superMan: ISuperman = {
};
// END

export { superMan, type ISuperman, type IBird, type IPlane };
export { superMan, type ISuperMan, type IBird, type IPlane };