-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1776a2
commit cb8b414
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export class FullSyncGetFindParameter { | ||
public static SELECTOR: FullSyncGetFindParameter = new FullSyncGetFindParameter("selector"); | ||
public static SORT: FullSyncGetFindParameter = new FullSyncGetFindParameter("sort"); | ||
public static LIMIT: FullSyncGetFindParameter = new FullSyncGetFindParameter("limit"); | ||
public static SKIP: FullSyncGetFindParameter = new FullSyncGetFindParameter("skip"); | ||
public static USE_INDEX: FullSyncGetFindParameter = new FullSyncGetFindParameter("use_index"); | ||
|
||
public name: string; | ||
|
||
constructor(name: string) { | ||
this.name = name; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export class FullSyncGetIndexParameter { | ||
public static FIELDS: FullSyncGetIndexParameter = new FullSyncGetIndexParameter("fields"); | ||
public static NAME: FullSyncGetIndexParameter = new FullSyncGetIndexParameter("name"); | ||
public static DDOC: FullSyncGetIndexParameter = new FullSyncGetIndexParameter("ddoc"); | ||
public static TYPE: FullSyncGetIndexParameter = new FullSyncGetIndexParameter("type"); | ||
|
||
public name: string; | ||
|
||
constructor(name: string) { | ||
this.name = name; | ||
} | ||
} |