mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:09:30 +08:00
11 lines
350 B
Text
11 lines
350 B
Text
export = MediaSlash9;
|
|
declare class MediaSlash9 extends BasePlugin {
|
|
/** @param {import('postcss').Result} result */
|
|
constructor(result: import('postcss').Result);
|
|
/**
|
|
* @param {import('postcss').AtRule} rule
|
|
* @return {void}
|
|
*/
|
|
detect(rule: import('postcss').AtRule): void;
|
|
}
|
|
import BasePlugin = require("../plugin");
|