This rule warns when code uses the typeof operator to check the type of a value. In roblox-ts, the typeof operator is not available, and you should use typeIs(value, type) or typeOf(value) instead for type checks.
const t = typeof a; // ❌
const t = typeOf(a); // ✅if (typeof x === "string") {} // ❌
if (typeIs(x, "string")) {} // ✅