Add two files of Table to master (#364)

This commit is contained in:
Chris-MS-896
2021-01-08 20:56:59 -06:00
committed by GitHub
parent 6490597736
commit 76d7f00a90
3 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
abstract class CacheBase<T> {
public data: T[];
public data: T[] | null;
public sortOrder: any;
public serverCallInProgress: boolean;

View File

@@ -7,7 +7,7 @@ export interface ITableEntity {
export interface ITableEntityForTablesAPI extends ITableEntity {
PartitionKey: ITableEntityAttribute;
RowKey: ITableEntityAttribute;
Timestamp?: ITableEntityAttribute;
Timestamp: ITableEntityAttribute;
}
export interface ITableEntityAttribute {