| 242 | * An element removed by DOMPurify. |
| 243 | */ |
| 244 | export interface RemovedAttribute { |
| 245 | /** |
| 246 | * The attribute that was removed. |
| 247 | */ |
| 248 | attribute: Attr | null; |
| 249 | |
| 250 | /** |
| 251 | * The element that the attribute was removed. |
| 252 | */ |
| 253 | from: Node; |
| 254 | } |
| 255 | |
| 256 | type BasicHookName = |
| 257 | | 'beforeSanitizeElements' |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…