summary refs log tree commit diff
path: root/lib/index.ts
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-10-13 23:48:12 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-10-13 23:48:12 +0200
commit4274595b251632ef004d5f1429d7fbdde1cd4a5a (patch)
treec8a5ac120ddd03e161ecac522b1180f3a815cf70 /lib/index.ts
parent0ccea881106946b66d167eee0ec8116ae4e3019e (diff)
downloadkronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.tar.gz
kronikarz-4274595b251632ef004d5f1429d7fbdde1cd4a5a.zip
Add publish options
Diffstat (limited to 'lib/index.ts')
-rw-r--r--lib/index.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/index.ts b/lib/index.ts
new file mode 100644
index 0000000..61e38c8
--- /dev/null
+++ b/lib/index.ts
@@ -0,0 +1,14 @@
+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);
+  }
+}