docs: initial api reference docs (#5352)

This commit is contained in:
EYHN
2024-01-02 12:46:27 +00:00
parent 44eb7b97f4
commit 4aae3cbba3
10 changed files with 125 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
"./command": "./src/command/index.ts",
"./atom": "./src/atom/index.ts",
"./app-config-storage": "./src/app-config-storage.ts",
"./__internal__/*": "./src/__internal__/*.ts"
".": "./src/index.ts"
},
"dependencies": {
"@affine/debug": "workspace:*",

View File

@@ -0,0 +1,4 @@
export * from './app-config-storage';
export * from './atom';
export * from './blocksuite';
export * from './command';

View File

@@ -0,0 +1,4 @@
{
"extends": ["../../../typedoc.base.json"],
"entryPoints": ["src/index.ts"]
}

View File

@@ -0,0 +1,4 @@
{
"extends": ["../../../typedoc.base.json"],
"entryPoints": ["src/index.ts"]
}