mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import type { EditorHost } from '@blocksuite/block-std';
|
|
import type { TestUtils } from '@blocksuite/blocks';
|
|
import type { AffineEditorContainer } from '@blocksuite/presets';
|
|
import type { BlockSchema, Doc, DocCollection, Job } from '@blocksuite/store';
|
|
import type { z } from 'zod';
|
|
|
|
declare global {
|
|
type HTMLTemplate = [
|
|
string,
|
|
Record<string, unknown>,
|
|
...(HTMLTemplate | string)[],
|
|
];
|
|
|
|
interface Window {
|
|
editor: AffineEditorContainer;
|
|
doc: Doc;
|
|
collection: DocCollection;
|
|
blockSchemas: z.infer<typeof BlockSchema>[];
|
|
job: Job;
|
|
Y: typeof DocCollection.Y;
|
|
std: typeof std;
|
|
testUtils: TestUtils;
|
|
host: EditorHost;
|
|
testWorker: Worker;
|
|
|
|
wsProvider: ReturnType<typeof setupBroadcastProvider>;
|
|
bcProvider: ReturnType<typeof setupBroadcastProvider>;
|
|
|
|
devtoolsFormatters: {
|
|
header: (obj: unknown, config: unknown) => null | HTMLTemplate;
|
|
hasBody: (obj: unknown, config: unknown) => boolean | null;
|
|
body: (obj: unknown, config: unknown) => null | HTMLTemplate;
|
|
}[];
|
|
}
|
|
}
|