8 lines
287 B
TypeScript
8 lines
287 B
TypeScript
/** sessionKey (workspaceRoot) → PRD markdown */
|
|
export declare const prdStore: Map<string, string>;
|
|
export declare function finalizePrd(sessionKey: string, content: string): {
|
|
saved: true;
|
|
message: string;
|
|
};
|
|
export declare function getPrd(sessionKey: string): string | null;
|