mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 13:29:30 +08:00
11 lines
370 B
Text
11 lines
370 B
Text
export = Important;
|
|
declare class Important extends BasePlugin {
|
|
/** @param {import('postcss').Result=} result */
|
|
constructor(result?: import('postcss').Result | undefined);
|
|
/**
|
|
* @param {import('postcss').Declaration} decl
|
|
* @return {void}
|
|
*/
|
|
detect(decl: import('postcss').Declaration): void;
|
|
}
|
|
import BasePlugin = require("../plugin");
|