From 7ba61904ee4316a5bd5a02577886e122b28eab3f Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 15 Oct 2019 20:00:00 +0200 Subject: [PATCH] fix(core): update --- test/test.ts | 2 +- ts/smartbucket.classes.bucket.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.ts b/test/test.ts index 4129c68..52a2377 100644 --- a/test/test.ts +++ b/test/test.ts @@ -31,7 +31,7 @@ tap.test('should get a bucket', async () => { }); tap.test('should store data in bucket', async () => { - + myBucket.store }); tap.start(); diff --git a/ts/smartbucket.classes.bucket.ts b/ts/smartbucket.classes.bucket.ts index 3da9f75..282492e 100644 --- a/ts/smartbucket.classes.bucket.ts +++ b/ts/smartbucket.classes.bucket.ts @@ -37,7 +37,7 @@ export class Bucket { /** * store file */ - public store(fileName:) { - + public store(pathArg: string, fileContent: string) { + } }