File tree Expand file tree Collapse file tree
postcss-purgecss/src/types
purgecss-webpack-plugin/src/types
rollup-plugin-purgecss/src/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import {
2- UserDefinedSafelist ,
32 StringRegExpArray ,
3+ UserDefinedSafelist ,
44} from "../../../purgecss/src/types/index" ;
55
66export interface RawContent < T = string > {
@@ -31,4 +31,5 @@ export interface UserDefinedOptions {
3131 safelist ?: UserDefinedSafelist ;
3232 blocklist ?: StringRegExpArray ;
3333 skippedContentGlobs ?: Array < string > ;
34+ dynamicAttributes ?: string [ ] ;
3435}
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export interface UserDefinedOptions {
3636 safelist ?: StringRegExpArray | ComplexSafelist | SafelistFunction ;
3737 blocklist ?: StringRegExpArray | BlocklistFunction ;
3838 skippedContentGlobs ?: Array < string > ;
39+ dynamicAttributes ?: string [ ] ;
3940 only ?: string [ ] ;
4041}
4142
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export interface UserDefinedOptions {
3333 safelist ?: UserDefinedSafelist ;
3434 blocklist ?: StringRegExpArray ;
3535 skippedContentGlobs ?: Array < string > ;
36+ dynamicAttributes ?: string [ ] ;
3637
3738 insert ?: boolean ;
3839 include ?: string | RegExp | ( string | RegExp ) [ ] ;
You can’t perform that action at this time.
0 commit comments