source: frontend/node_modules/postcss-custom-properties/dist/index.d.ts

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

Fix frontend appearance

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[9af201e]1import type { PluginCreator } from 'postcss';
2import type { ImportOptions, ExportOptions } from './lib/options';
3export interface PluginOptions {
4 /** Do not emit warnings about "importFrom" and "exportTo" deprecations */
5 disableDeprecationNotice?: boolean;
6 /** Determines whether Custom Properties and properties using custom properties should be preserved in their original form. */
7 preserve?: boolean;
8 /** Specifies sources where Custom Properties can be imported from, which might be CSS, JS, and JSON files, functions, and directly passed objects. */
9 importFrom?: ImportOptions | Array<ImportOptions>;
10 /** Specifies destinations where Custom Properties can be exported to, which might be CSS, JS, and JSON files, functions, and directly passed objects. */
11 exportTo?: ExportOptions | Array<ExportOptions>;
12 /** Specifies if `importFrom` properties or `:root` properties have priority. */
13 overrideImportFromWithRoot?: boolean;
14}
15declare const creator: PluginCreator<PluginOptions>;
16export default creator;
Note: See TracBrowser for help on using the repository browser.