It is on its default, _ready
returns void (nothing) when its finished. You can remove the type hint from GDScript by writing it as func _ready():
if you want, but internally its still a function that returns void (nothing). If you are wanting to learn more, you can look at this article by Mozilla on programming returns in Javascript (the fundamentals are the same regardless of programming language)