Fix cell attachment types (#14485)

This commit is contained in:
Chris LaFreniere
2021-03-01 15:06:12 -08:00
committed by GitHub
parent ff508b1bf4
commit 9273572d5a
5 changed files with 9 additions and 7 deletions

View File

@@ -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'