UNPKG

theme-editor-svelte

Version:
4 lines (3 loc) 331 B
import type { ThemeVariable } from "../types.js"; export declare const findValueType: (variable: string, value: string, typesMap: Record<string, ThemeVariable["type"]>) => "number" | "color" | "unknown" | undefined; export declare const mergeVariables: (defaultValues: ThemeVariable[], values: ThemeVariable[]) => ThemeVariable[];