epiphany/node_modules/@csstools/css-calc/dist/index.d.ts

7 lines
452 B
TypeScript
Raw Normal View History

2023-12-09 22:48:07 -08:00
export type { conversionOptions } from './options';
import type { conversionOptions } from './options';
import { ComponentValue } from '@csstools/css-parser-algorithms';
export declare function calc(css: string, options?: conversionOptions): string;
export declare function calcFromComponentValues(componentValuesList: Array<Array<ComponentValue>>, options?: conversionOptions): ComponentValue[][];
export declare const mathFunctionNames: Set<string>;