adnbn
Version:
Addon Bone - Cross-browser web extension framework with shared code base
21 lines (18 loc) • 725 B
TypeScript
import { ViewOptions, ViewDefinition } from './view.js';
import { Browser } from './browser.js';
import 'react';
import 'utility-types';
import 'html-rspack-tags-plugin';
import './helpers.js';
import '../manifest-DAV18Z2K.js';
import './app.js';
import './locale.js';
declare const SidebarAlternativeBrowsers: ReadonlySet<Browser>;
interface SidebarConfig {
icon?: string;
apply?: boolean;
}
type SidebarEntrypointOptions = SidebarConfig & ViewOptions;
type SidebarProps = SidebarEntrypointOptions;
type SidebarDefinition = SidebarEntrypointOptions & ViewDefinition<SidebarProps>;
export { SidebarAlternativeBrowsers, type SidebarConfig, type SidebarDefinition, type SidebarEntrypointOptions, type SidebarProps };