mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
azure-mobile-services-client bool -> boolean
This commit is contained in:
parent
3dc55000c6
commit
165bcadbbc
@ -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');
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user