@bookbox/view-html
Version:
Bookbox view for html
17 lines (16 loc) • 399 B
TypeScript
import { gotoKey } from '../goto';
import { getCurrentPage } from '../navigation';
import { setTheme } from '../theme';
declare global {
interface Window {
bbx: {
gotoKey: typeof gotoKey;
setTheme: typeof setTheme;
getCurrentPage: typeof getCurrentPage;
};
}
}
/**
* global functions
*/
export declare function setGlobalActions(): void;