gql.tada which give me a type for an enum type F = "ONE" | "TWO" | "THREE";schema validation that is checked again that type, so typescript would tell me if it's not matching anymore.const Frequency = Schema.Literal("ONE", "TWO", "THREE") but then not sure how to check that it matched the type i get from gql. was trying to look into declare but can't figure it out :/FOUR i'd like my typescript check to throw an error saying Frequency is missing FOUR