10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import type { SandpackTheme } from "../types";
|
|
/**
|
|
* @category Hooks
|
|
*/
|
|
export declare const useSandpackTheme: () => {
|
|
theme: SandpackTheme;
|
|
themeId: string;
|
|
themeMode: "dark" | "light" | "auto";
|
|
};
|