mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Moved azure to azure-node.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
/// <reference path="azure.d.ts" />
|
||||
|
||||
|
||||
import Azure = module("azure");
|
||||
|
||||
var ts = new Azure.TableService();
|
||||
|
||||
ts.createTable("babbsies", function (error, table) {
|
||||
ts.insertEntity(table.TableName, { PartitionKey: "Midwest", RowKey: "1", Name: "Tommy", Color: "Blue" },
|
||||
function () {
|
||||
ts.deleteEntity(table.TableName, { PartitionKey: "Midwest", RowKey: "1" });
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user