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) { + } }