diff --git a/types/config.d.ts b/types/config.d.ts index b06c3973..204236e6 100644 --- a/types/config.d.ts +++ b/types/config.d.ts @@ -53,12 +53,17 @@ export default interface Config { * ``` * export default { * attributes: { - * remove: ['width', 'height'], + * remove: [ + * { + * name: 'width', + * value: '100', // or RegExp: /\d/ + * }, + * ], // or as array: ['width', 'height'] * } * } * ``` */ - remove?: Record; + remove?: Array; } /**