9 lines
350 B
TypeScript
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;
|