asin.d.ts 219 B

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