Skip to content

Commit

Permalink
test lint
Browse files Browse the repository at this point in the history
  • Loading branch information
josemarinas committed Oct 26, 2023
1 parent 9a9ffe2 commit 77d1b22
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions js-client/examples/02-extended-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ title: Extended client
Use the ClientCore class to create an extended client. Now you can add your custom functions and properties to the client.
*/
import { ClientCore } from '../src';
import { MyContext } from './01-extended-context';
import { ClientCore } from "../src";
import { MyContext } from "./01-extended-context";

// define a custom client that extends the ClientCore class
class MyClient extends ClientCore {
Expand All @@ -20,7 +20,7 @@ class MyClient extends ClientCore {
}

public customFunction() {
return 'hello world';
return "hello world";
}

public async customFunction2() {
Expand All @@ -33,7 +33,6 @@ class MyClient extends ClientCore {
console.log(signer);
console.log(provider);
console.log(graphqlClient);
console.log(ipfsClient);

// ...
}
Expand Down

0 comments on commit 77d1b22

Please sign in to comment.