-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from arifszn/change-repo-name
Change repo name
- Loading branch information
Showing
6 changed files
with
438 additions
and
439 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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
// Type definitions for article-api | ||
// Project https://github.com/arifszn/article-api | ||
// Author: MD. Ariful Alam <[email protected]> | ||
// Type definitions for blog-js | ||
// Project https://github.com/arifszn/blog-js | ||
// Author: Ariful Alam <[email protected]> | ||
|
||
interface options { | ||
/** | ||
* Username | ||
*/ | ||
user: string; | ||
/** | ||
* Username | ||
*/ | ||
user: string; | ||
} | ||
|
||
/** | ||
* Get most recent medium articles | ||
* Get most recent medium posts | ||
*/ | ||
declare function getMediumArticle(options: options): Promise<R>; | ||
declare function getMediumPost(options: options): Promise<R>; | ||
|
||
/** | ||
* Get most recent dev.to articles | ||
* Get most recent dev.to posts | ||
*/ | ||
declare function getDevtoArticle(options: options): Promise<R>; | ||
declare function getDevtoPost(options: options): Promise<R>; | ||
|
||
export { getMediumArticle, getDevtoArticle }; | ||
export { getMediumPost, getDevtoPost }; |
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
Oops, something went wrong.