feat(react/widgets): sql table schemas

This commit is contained in:
Elian Doran
2025-08-29 17:14:27 +03:00
parent f2ce8b9f3c
commit 753f1dc7b6
7 changed files with 99 additions and 111 deletions

View File

@@ -234,3 +234,11 @@ export interface CreateChildrenResponse {
note: NoteRow;
branch: BranchRow;
}
export interface SchemaResponse {
name: string;
columns: {
name: string;
type: string;
}[];
}