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

9 lines
350 B
TypeScript

import type { PluginCreator } from 'postcss';
import { DirectionFlow } from './lib/types';
/** postcss-logical-overflow plugin options */
export type pluginOptions = {
/** Sets the direction for inline. default: left-to-right */
inlineDirection?: DirectionFlow;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;