mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:29:29 +08:00
16 lines
595 B
Text
16 lines
595 B
Text
export = HtmlCombinatorCommentBody;
|
|
declare class HtmlCombinatorCommentBody extends BasePlugin {
|
|
/** @param {import('postcss').Result} result */
|
|
constructor(result: import('postcss').Result);
|
|
/**
|
|
* @param {import('postcss').Rule} rule
|
|
* @return {void}
|
|
*/
|
|
detect(rule: import('postcss').Rule): void;
|
|
/** @param {import('postcss').Rule} rule
|
|
* @return {parser.SyncProcessor<void>}
|
|
*/
|
|
analyse(rule: import('postcss').Rule): parser.SyncProcessor<void>;
|
|
}
|
|
import BasePlugin = require("../plugin");
|
|
import parser = require("postcss-selector-parser");
|