1234567891011121314 |
- import type { Declaration, Result, Postcss } from 'postcss';
- import type { Node } from 'postcss-value-parser';
- declare type imageSetFunction = {
- imageSetFunction: Node;
- imageSetOptionNodes: Array<Node>;
- };
- export declare const processImageSet: (imageSetFunctions: Array<imageSetFunction>, decl: Declaration, opts: {
- decl: Declaration;
- oninvalid: string;
- preserve: boolean;
- result: Result;
- postcss: Postcss;
- }) => void;
- export {};
|