@kaijia/dsh-sidebar 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts ADDED
@@ -0,0 +1,19 @@
1
+ import type { Context } from '@deepseek-ai/cordis'
2
+ import type Schema from '@deepseek-ai/schemastery'
3
+
4
+ export declare const name: 'dsh-sidebar'
5
+ export declare const inject: string[]
6
+
7
+ export interface Config {
8
+ maxTextBytes: number
9
+ maxImageBytes: number
10
+ maxEntriesPerDirectory: number
11
+ maxTreeRows: number
12
+ watchEnabled: boolean
13
+ watchDebounceMs: number
14
+ watchIgnored: string[]
15
+ }
16
+
17
+ export declare const Config: Schema<Config>
18
+
19
+ export declare function apply(ctx: Context, config: Config): void