Multiple bool => boolean fixes

This commit is contained in:
Boris Yankov
2013-08-07 18:02:05 +03:00
parent 38888208fb
commit f677cca98d
36 changed files with 183 additions and 185 deletions
+6 -6
View File
@@ -9,7 +9,7 @@
* TODO
*/
declare module "azure" {
import events = module("events");
import events = require("events");
//#region Services
export class TableService extends BatchServiceClient {
@@ -190,7 +190,7 @@ declare module "azure" {
export class BatchServiceClient extends StorageServiceClient {
operations: any[];
constructor(storageAccount: string, storageAccessKey: string, host: string, usePathstyleUri: bool, authenticationProvider);
constructor(storageAccount: string, storageAccessKey: string, host: string, usePathstyleUri: boolean, authenticationProvider);
beginBatch(): void;
isInBatch(): boolean;
rollback(): void;
@@ -290,11 +290,11 @@ declare module "azure" {
}
export interface CreateTableIfNotExistsCallback {
(error: Error, created: bool, response: WebResponse): void;
(error: Error, created: boolean, response: WebResponse): void;
}
export interface DeleteTableCallback {
(error: Error, successful: bool, response: WebResponse): void;
(error: Error, successful: boolean, response: WebResponse): void;
}
export interface QueryTablesCallback {
@@ -330,7 +330,7 @@ declare module "azure" {
}
export interface DeleteEntityCallback {
(error: Error, successful: bool, response: WebResponse): void;
(error: Error, successful: boolean, response: WebResponse): void;
}
export interface UpdateEntityOptions extends TimeoutIntervalOptions {
@@ -356,7 +356,7 @@ declare module "azure" {
apiVersion: string;
usePathStyleUri: string;
constructor(storageAccount: string, storageAccessKey: string, host: string, usePathStyleUri: bool, authenticationProvider);
constructor(storageAccount: string, storageAccessKey: string, host: string, usePathStyleUri: boolean, authenticationProvider);
}
//#endregion