5 lines
214 B
TypeScript
5 lines
214 B
TypeScript
|
import type { Declaration } from 'postcss';
|
||
|
declare const sinFunctionCheck = "sin(";
|
||
|
declare function transformSinFunction(decl: Declaration): string | undefined;
|
||
|
export { sinFunctionCheck, transformSinFunction };
|