persona-community-5/.pnpm-store/v3/files/d7/78b8d382d49ee152406b7ff5f7ddfa43d3c623ba310d27508d5f42361359f9d43c181610a5d445d2e00c2780065261853cc903a0ca1639b18875cb870a21bb
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
283 B
Plaintext

import type { PluginCreator } from 'postcss'
import type { Config } from './config.d'
declare const plugin: PluginCreator<string | Config | { config: string | Config }>
declare type _Config = Config
declare namespace plugin {
export type { _Config as Config }
}
export = plugin