I'm considering introducing tink_state in my codebase, but we have tink.CoreApi overshadowed with an empty module for these reasons:
we prefer import tink_core modules explicitly
we don't have dce=full yet and we don't want to include parts of tink_core that we don't use
tink.CoreApi annoyingly shows up in the completion before the actual tink modules (probably the most important thing)
So this PR gets rid of using tink.CoreApi across tink_state codebase :) I replaced most of it with direct imports in imports.hx, except for Pair which is only used in two non-essential places.
I'm considering introducing tink_state in my codebase, but we have
tink.CoreApi
overshadowed with an empty module for these reasons:So this PR gets rid of
using tink.CoreApi
across tink_state codebase :) I replaced most of it with direct imports inimports.hx
, except forPair
which is only used in two non-essential places.