const intId = TypeIdOf!int; const stringId = TypeIdOf!string; assert(intId.fqn == "int"); assert(intId == intId); assert(stringId != intId);
See Implementation