fix(API): always use actual id property type references
Using the ID type makes type errors more likely because we accept a wider range of types as arguments for API operations than we actually support on a logic level, i.e. when using maps because Map<ID, T>.get('1') !== Map<ID,T>.get(1)
Loading
Please register or sign in to comment