We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
interface Hook { tap(): void } declare class SyncHook implements Hook { }
Try using the "Implement interface" quick fix on SyncHook.
SyncHook
Expected:
declare class SyncHook implements Hook { tap(): void; }
Actual:
declare class SyncHook implements Hook { tap(): void { throw new Error("Method not implemented."); } }
Try using the "Implement interface" quick fix on
SyncHook.Expected:
Actual: