6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
|
import type { PluginCreator } from 'postcss';
|
||
|
/** postcss-gamut-mapping plugin options */
|
||
|
export type pluginOptions = never;
|
||
|
declare const creator: PluginCreator<pluginOptions>;
|
||
|
export default creator;
|