mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-02-28 06:22:45 -08:00
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
import type { RendererState } from './state';
|
|
import type { RendererDom } from './utils/dom';
|
|
import type { PlatformInfo } from './utils/platform';
|
|
|
|
export type RendererContext = {
|
|
dom: RendererDom;
|
|
platform: PlatformInfo;
|
|
state: RendererState;
|
|
};
|
|
|
|
export type ModalStateReader = {
|
|
isAnySettingsModalOpen: () => boolean;
|
|
isAnyModalOpen: () => boolean;
|
|
};
|