8 lines
309 B
TypeScript
8 lines
309 B
TypeScript
import type { PluginCreator } from 'postcss';
|
|
/** postcss-media-queries-aspect-ratio-number-values plugin options */
|
|
export type pluginOptions = {
|
|
/** Preserve the original notation. default: false */
|
|
preserve?: boolean;
|
|
};
|
|
declare const creator: PluginCreator<pluginOptions>;
|
|
export default creator;
|