acos.d.ts 219 B

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