astro-ghostcms/.pnpm-store/v3/files/d7/78b8d382d49ee152406b7ff5f7d...

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