Prefer not using type assertion, unless you really know what you are doing. Prefer using type annotations or, better, let the compiler infers the types for you.
The book Effective Typescript has a great explanation about the preference for inference and type annotation over assertion.