venom-connect
Version:
<p align="center"> <a href="https://github.com/venom-blockchain/developer-program"> <img src="https://raw.githubusercontent.com/venom-blockchain/developer-program/main/vf-dev-program.png" alt="Logo" width="366.8" height="146.4"> </a> </p>
10 lines • 488 B
TypeScript
import { Theme } from "../types";
declare type PartialTextTheme = Omit<Theme, "popup" | "item"> & {
popup: Omit<Theme["popup"], "text"> & Partial<Theme["popup"]["text"]>;
item: Omit<Theme["item"], "text"> & Partial<Theme["item"]["text"]> & {
warning: Omit<Theme["item"]["warning"], "text"> & Partial<Theme["item"]["warning"]["text"]>;
};
};
export declare const getThemeWithFallback: (theme: PartialTextTheme) => Theme;
export {};
//# sourceMappingURL=helpers.d.ts.map