adding azure table client module (#4)

This commit was merged in pull request #4.
This commit is contained in:
2024-08-11 18:26:45 -05:00
committed by GitHub
parent ff8aaba741
commit 17b57648d5
7 changed files with 120 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export interface TableOptions {
accountName: string;
accountKey: string;
tableName: string;
}