UNPKG

igniteui-theming

Version:

A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.

38 lines (37 loc) 821 B
import { SetRoundnessParams, SetSizeParams, SetSpacingParams } from '../schemas.js'; export declare function handleSetSize(params: SetSizeParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function handleSetSpacing(params: SetSpacingParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; export declare function handleSetRoundness(params: SetRoundnessParams): Promise<{ content: { type: "text"; text: string; }[]; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;