azure-mobile-services-client bool -> boolean

This commit is contained in:
jraymakers 2013-08-06 23:58:47 -07:00
parent 3dc55000c6
commit 165bcadbbc
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ if (client.currentUser === null) {
//define an interface that map to server side Table data
interface TodoItem { id?: number; text?: string; complete?: bool; }
interface TodoItem { id?: number; text?: string; complete?: boolean; }
var data: TodoItem[];
var tableTodoItems = client.getTable('todoitem');

View File

@ -75,7 +75,7 @@ declare module Microsoft.WindowsAzure {
select(...propNameSelected: string[]): IQuery;
select(funcProjectionFromThis: () => any): IQuery;
where(mapObjFilterCriteria: any): IQuery;
where(funcPredicateOnThis: (...qParams: any[]) => bool, ...qValues: any[]): IQuery;
where(funcPredicateOnThis: (...qParams: any[]) => boolean, ...qValues: any[]): IQuery;
skip(n: number): IQuery;
take(n: number): IQuery;
includeTotalCount(): IQuery;