Skip to content

Commit

Permalink
Update for evernote v2.0.5 (#42291)
Browse files Browse the repository at this point in the history
* Update for evernote v2.0.5

* Better types for evernote
  • Loading branch information
fcastilloec committed Feb 26, 2020
1 parent ed66eee commit ee15287
Show file tree
Hide file tree
Showing 3 changed files with 1,779 additions and 6,244 deletions.
10 changes: 8 additions & 2 deletions types/evernote/evernote-tests.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import { Evernote } from "evernote";
import * as Evernote from 'evernote';

var client = new Evernote.Client({ token: "abcdef", sandbox: true });
const client = new Evernote.Client({ token: 'abcdef', sandbox: true });
const filter = new Evernote.NoteStore.NoteFilter({
words: 'one, two, three',
ascending: true
});
const userStore = client.getUserStore();
userStore.getUser();

0 comments on commit ee15287

Please sign in to comment.