@tdallau/types

This package contains some typescript types i use in many project. Some examples are: ```ts const o1: Option<string> = { kind: 'some', value: 'hello i am an option value' }

@tdallau/helpers

This package contains some helper functions i use in many project. Some examples are: ```ts const isNum1 = isNumber(3); const isNum2 = isStringNumber('3');