sin.d.ts 214 B

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