cos.d.ts 214 B

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