Hi
I want to implement ITableEntity interface which in Azure.storage.winmd.
public interface ITableEntity
{
// Methods
void ReadEntity([In] IMap<string, EntityProperty> properties, [In] OperationContext operationContext);
IMap<string, EntityProperty> WriteEntity([In] OperationContext operationContext);
// Properties
string ETag { get; [param: In] set; }
string PartitionKey { get; [param: In] set; }
string RowKey { get; [param: In] set; }
DateTime Timestamp { get; [param: In] set; }
}
How to implement it in javascript?
Thanks