1 | /**
|
2 | * Entry point of menubar
|
3 | * @example
|
4 | * ```typescript
|
5 | * import { menubar } from 'menubar';
|
6 | * ```
|
7 | */
|
8 | import { Menubar } from './Menubar';
|
9 | import type { Options } from './types';
|
10 | export * from './util/getWindowPosition';
|
11 | export { Menubar };
|
12 | /**
|
13 | * Factory function to create a menubar application
|
14 | *
|
15 | * @param options - Options for creating a menubar application, see
|
16 | * {@link Options}
|
17 | */
|
18 | export declare function menubar(options?: Partial<Options>): Menubar;
|