tan.d.ts 214 B

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