Skip to content

Commit eb49015

Browse files
committed
Update TS definitions
1 parent 451aff7 commit eb49015

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

node/index.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,15 @@ export interface CSSModulesConfig {
304304
/** The pattern to use when renaming class names and other identifiers. Default is `[hash]_[local]`. */
305305
pattern?: string,
306306
/** Whether to rename dashed identifiers, e.g. custom properties. */
307-
dashedIdents?: boolean
307+
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
308316
}
309317

310318
export type CSSModuleExports = {

0 commit comments

Comments
 (0)