igniteui-theming
Version:
A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.
15 lines (14 loc) • 351 B
TypeScript
import { CreateComponentThemeParams } from '../schemas.js';
export declare function handleCreateComponentTheme(params: CreateComponentThemeParams): Promise<{
content: {
type: "text";
text: string;
}[];
isError: boolean;
} | {
content: {
type: "text";
text: string;
}[];
isError?: undefined;
}>;