We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aa9bb5 commit 60d47bbCopy full SHA for 60d47bb
src/main.ts
@@ -9,6 +9,11 @@ export type { Options }
9
const getOptions = (options: Options = {}) => {
10
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
11
validateOptions(options)
12
+
13
+ if (options.classes !== undefined) {
14
+ throw new TypeError('"classes" must not be defined.')
15
+ }
16
17
return options
18
}
19
0 commit comments