@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
60 lines • 1.21 kB
text/typescript
//#region src/Highlighter/theme/lobe-theme.d.ts
declare const _default: {
displayName: string;
name: string;
semanticHighlighting: boolean;
tokenColors: ({
settings: {
foreground: string;
fontStyle?: undefined;
background?: undefined;
};
scope?: undefined;
} | {
scope: string;
settings: {
foreground: string;
fontStyle?: undefined;
background?: undefined;
};
} | {
scope: string;
settings: {
fontStyle: string;
foreground: string;
background?: undefined;
};
} | {
settings: {
background: string;
foreground: string;
fontStyle?: undefined;
};
scope?: undefined;
} | {
scope: string[];
settings: {
foreground: string;
fontStyle?: undefined;
background?: undefined;
};
} | {
scope: string[];
settings: {
fontStyle: string;
foreground?: undefined;
background?: undefined;
};
} | {
scope: string[];
settings: {
fontStyle: string;
foreground: string;
background?: undefined;
};
})[];
type: string;
};
//#endregion
export { _default };
//# sourceMappingURL=lobe-theme.d.mts.map