@copilotkit/shared
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
9 lines (7 loc) • 333 B
TypeScript
declare function flattenObject(obj: Record<string, any>, parentKey?: string, res?: Record<string, any>): Record<string, any>;
declare function printSecurityNotice(advisory: {
advisory: string | null;
message: string;
severity: "low" | "medium" | "high" | "none";
}): void;
export { flattenObject, printSecurityNotice };