Skip to content

Commit

Permalink
ref #23 done
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesGrimont committed Nov 10, 2020
1 parent c1776a2 commit cb8b414
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/c8o/FullSyncGetFindParameter.ts
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;
}
}
12 changes: 12 additions & 0 deletions src/c8o/FullSyncGetIndexParameter.ts
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;
}
}

0 comments on commit cb8b414

Please sign in to comment.