atan.d.ts 219 B

1234
  1. import type { Declaration } from 'postcss';
  2. declare const atanFunctionCheck = "atan(";
  3. declare function transformAtanFunction(decl: Declaration): string | undefined;
  4. export { atanFunctionCheck, transformAtanFunction };