8 lines
326 B
TypeScript
8 lines
326 B
TypeScript
|
import type { PartialTheme, Theme } from './types/index';
|
||
|
/**
|
||
|
* Creates a custom theme definition.
|
||
|
* @param theme - Partial theme object.
|
||
|
* @param depComments - Whether to include deprecated tags as comments for deprecated slots.
|
||
|
*/
|
||
|
export declare function createTheme(theme?: PartialTheme, depComments?: boolean): Theme;
|