mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -05:00
Fix cell attachment types (#14485)
This commit is contained in:
6
src/sql/azdata.proposed.d.ts
vendored
6
src/sql/azdata.proposed.d.ts
vendored
@@ -83,10 +83,12 @@ declare module 'azdata' {
|
||||
}
|
||||
|
||||
export interface ICellContents {
|
||||
attachments?: ICellAttachment;
|
||||
attachments?: ICellAttachments;
|
||||
}
|
||||
|
||||
export type ICellAttachment = { [key: string]: { [key: string]: string } };
|
||||
export type ICellAttachments = { [key: string]: ICellAttachment };
|
||||
export type ICellAttachment = { [key: string]: string };
|
||||
|
||||
}
|
||||
|
||||
export type SqlDbType = 'BigInt' | 'Binary' | 'Bit' | 'Char' | 'DateTime' | 'Decimal'
|
||||
|
||||
Reference in New Issue
Block a user