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

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

Fix frontend appearance

  • Property mode set to 100644
File size: 1.3 KB
Line 
1export declare type ImportFromSource = {
2 from: string;
3 type?: string;
4} | string;
5export declare type ImportCustomProperties = {
6 customProperties?: Record<string, string>;
7 'custom-properties'?: Record<string, string>;
8};
9export declare type ImportAsFunction = () => ImportFromSource | ImportCustomProperties;
10export declare type ImportAsPromise = Promise<ImportFromSource | ImportCustomProperties>;
11export declare type ImportAsFunctionPromise = () => Promise<ImportFromSource | ImportCustomProperties>;
12export declare type ImportOptions = ImportFromSource | ImportCustomProperties | ImportAsFunction | ImportAsPromise | ImportAsFunctionPromise;
13export declare type ExportJSONFunction = (customProperties?: Record<string, string>) => Record<string, string>;
14export declare type ExportToSource = {
15 to: string;
16 type?: string;
17 toJSON: ExportJSONFunction;
18} | string;
19export declare type ExportCustomProperties = {
20 customProperties?: Record<string, string>;
21 'custom-properties'?: Record<string, string>;
22 toJSON: ExportJSONFunction;
23};
24export declare type ExportAsFunction = (ExportCustomProperties: any) => void;
25export declare type ExportAsFunctionPromise = (ExportCustomProperties: any) => Promise<void>;
26export declare type ExportOptions = ExportToSource | ExportCustomProperties | ExportAsFunction | ExportAsFunctionPromise;
Note: See TracBrowser for help on using the repository browser.