You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
458 B
15 lines
458 B
2 years ago
|
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 {};
|