@csstools/postcss-trigonometric-functions
Version:
Use sin(), cos(), tan(), acos(), atan(), and atan2() to compute trigonometric relationships
13 lines (9 loc) • 314 B
TypeScript
import type { PluginCreator } from 'postcss';
declare const creator: PluginCreator<pluginOptions>;
export default creator;
/** postcss-trigonometric-functions plugin options */
export declare type pluginOptions = {
/** Preserve the original notation. default: false */
preserve?: boolean;
};
export { }