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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

@ -61,6 +61,8 @@
"./src/Explorer/Tables/Constants.ts", "./src/Explorer/Tables/Constants.ts",
"./src/Explorer/Tables/CqlUtilities.ts", "./src/Explorer/Tables/CqlUtilities.ts",
"./src/Explorer/Tables/QueryBuilder/DateTimeUtilities.ts", "./src/Explorer/Tables/QueryBuilder/DateTimeUtilities.ts",
"./src/Explorer/Tables/DataTable/CacheBase.ts",
"./src/Explorer/Tables/Entities.ts",
"./src/Explorer/Tabs/TabComponents.ts", "./src/Explorer/Tabs/TabComponents.ts",
"./src/GitHub/GitHubConnector.ts", "./src/GitHub/GitHubConnector.ts",
"./src/Index.ts", "./src/Index.ts",