Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | // Type-only shims for the untyped PostCSS plugins used by the audit
// engine. They all ship as default-exported plugin factories; we only
// call them with an optional options object and feed the result to
// postcss().process(), so the exact option types don't matter here.
declare module 'postcss-import' {
import type { AcceptedPlugin } from 'postcss';
const plugin: (options?: Record<string, unknown>) => AcceptedPlugin;
export default plugin;
}
declare module 'postcss-nested' {
import type { AcceptedPlugin } from 'postcss';
const plugin: (options?: Record<string, unknown>) => AcceptedPlugin;
export default plugin;
}
declare module 'postcss-discard-comments' {
import type { AcceptedPlugin } from 'postcss';
const plugin: (options?: Record<string, unknown>) => AcceptedPlugin;
export default plugin;
}
|