8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import type { PluginCreator } from 'postcss';
|
|
/** postcss-place plugin options */
|
|
export type pluginOptions = {
|
|
/** Preserve the original notation. default: true */
|
|
preserve?: boolean;
|
|
};
|
|
declare const creator: PluginCreator<pluginOptions>;
|
|
export default creator;
|