epiphany/node_modules/postcss-overflow-shorthand/dist/index.d.ts
2023-12-09 22:48:07 -08:00

8 lines
286 B
TypeScript

import type { PluginCreator } from 'postcss';
/** postcss-overflow-shorthand plugin options */
export type pluginOptions = {
/** Preserve the original notation. default: true */
preserve?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;