function returnAny(message: any): void {
    console.log(message);
}

returnVoid('아무거나');

Avoid leaking any

문제 상황

해결