6 lines
219 B
TypeScript
6 lines
219 B
TypeScript
|
import type { pluginOptions } from './options';
|
||
|
import type { PluginCreator } from 'postcss';
|
||
|
export type { pluginOptions } from './options';
|
||
|
declare const creator: PluginCreator<pluginOptions>;
|
||
|
export default creator;
|