mirror of
https://github.com/zen-browser/components.git
synced 2025-07-10 14:05:29 +02:00
feat: Add export statement for split-views module
This commit is contained in:
parent
bde9763255
commit
6ad0e99b54
6 changed files with 1572 additions and 11 deletions
|
@ -45,8 +45,14 @@ class SplitViewsBase extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
gSplitViewsComponent: typeof SplitViewsBase;
|
||||
}
|
||||
}
|
||||
|
||||
// Public API exposed by the module
|
||||
export class gSplitViews extends SplitViewsBase {
|
||||
window.gSplitViewsComponent = class extends SplitViewsBase {
|
||||
constructor(config: SplitViewConfig) {
|
||||
super(config);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue