25 lines
407 B
TypeScript
25 lines
407 B
TypeScript
export interface CustomTheme {
|
|
name: string;
|
|
styles: {
|
|
head?: string;
|
|
list?: string;
|
|
placeholder?: string;
|
|
caret?: string;
|
|
search?: string;
|
|
chips?: string;
|
|
lable?: string;
|
|
};
|
|
}
|
|
|
|
export interface CustomThemeJson {
|
|
name: string;
|
|
styles: {
|
|
head?: object;
|
|
list?: object;
|
|
placeholder?: object;
|
|
caret?: object;
|
|
search?: object;
|
|
lable?: object;
|
|
};
|
|
}
|