diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-13 23:48:12 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-13 23:48:12 +0200 |
commit | 4274595b251632ef004d5f1429d7fbdde1cd4a5a (patch) | |
tree | c8a5ac120ddd03e161ecac522b1180f3a815cf70 /src/index.ts | |
parent | 0ccea881106946b66d167eee0ec8116ae4e3019e (diff) | |
download | kronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.tar.gz kronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.zip |
Add publish options
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 61e38c8..0000000 --- a/src/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { getPosts as apiGetPosts } from "./getPosts"; -import { Post } from "./interfaces"; - -export default class Kronikarz { - postPath: string; - - constructor(postPath: string) { - this.postPath = postPath; - } - - getPosts(): Array<Post> { - return apiGetPosts(this.postPath); - } -} |