mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 01:25:38 -05:00
Notebooks: Add Support for Cell Attachment Images (#14449)
* Add to interfaces * Works E2E * Consolidate interface * Add comments, cleanup * Add some tests * Cleanup * interface cleanup * Add more tests * Add comments * Add type for cell attachment * wip
This commit is contained in:
6
src/sql/azdata.proposed.d.ts
vendored
6
src/sql/azdata.proposed.d.ts
vendored
@@ -81,6 +81,12 @@ declare module 'azdata' {
|
||||
export interface ICellMetadata {
|
||||
connection_name?: string;
|
||||
}
|
||||
|
||||
export interface ICellContents {
|
||||
attachments?: ICellAttachment;
|
||||
}
|
||||
|
||||
export type ICellAttachment = { [key: string]: { [key: string]: string } };
|
||||
}
|
||||
|
||||
export type SqlDbType = 'BigInt' | 'Binary' | 'Bit' | 'Char' | 'DateTime' | 'Decimal'
|
||||
|
||||
Reference in New Issue
Block a user