We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 451aff7 commit eb49015Copy full SHA for eb49015
node/index.d.ts
@@ -304,7 +304,15 @@ export interface CSSModulesConfig {
304
/** The pattern to use when renaming class names and other identifiers. Default is `[hash]_[local]`. */
305
pattern?: string,
306
/** Whether to rename dashed identifiers, e.g. custom properties. */
307
- dashedIdents?: boolean
+ dashedIdents?: boolean,
308
+ /** Whether to enable hashing for `@keyframes`. */
309
+ animation?: boolean,
310
+ /** Whether to enable hashing for CSS grid identifiers. */
311
+ grid?: boolean,
312
+ /** Whether to enable hashing for custom identifiers. */
313
+ customIdents?: boolean,
314
+ /** Whether to require at least one class or id selector in each rule. */
315
+ pure?: boolean
316
}
317
318
export type CSSModuleExports = {
0 commit comments