mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 21:49:31 +08:00
11 lines
374 B
Text
11 lines
374 B
Text
export = TrailingSlashComma;
|
|
declare class TrailingSlashComma extends BasePlugin {
|
|
/** @param {import('postcss').Result=} result */
|
|
constructor(result?: import('postcss').Result | undefined);
|
|
/**
|
|
* @param {import('postcss').Rule} rule
|
|
* @return {void}
|
|
*/
|
|
detect(rule: import('postcss').Rule): void;
|
|
}
|
|
import BasePlugin = require("../plugin");
|