source: frontend/node_modules/postcss-image-set-function/dist/lib/process-image-set.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 458 bytes
Line 
1import type { Declaration, Result, Postcss } from 'postcss';
2import type { Node } from 'postcss-value-parser';
3declare type imageSetFunction = {
4 imageSetFunction: Node;
5 imageSetOptionNodes: Array<Node>;
6};
7export declare const processImageSet: (imageSetFunctions: Array<imageSetFunction>, decl: Declaration, opts: {
8 decl: Declaration;
9 oninvalid: string;
10 preserve: boolean;
11 result: Result;
12 postcss: Postcss;
13}) => void;
14export {};
Note: See TracBrowser for help on using the repository browser.