questions/02693-medium-endswith/README.md
Implement EndsWith<T, U> which takes two exact string types and returns whether T ends with U
For example:
type a = EndsWith<'abc', 'bc'> // expected to be true
type b = EndsWith<'abc', 'abc'> // expected to be true
type c = EndsWith<'abc', 'd'> // expected to be false
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/2693/answer" target="_blank"></a> <a href="https://tsch.js.org/2693/solutions" target="_blank"></a> <hr><h3>Related Challenges</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/02688-medium-startswith/README.md" target="_blank"></a> <!--info-footer-end-->