poolsketch
v2.0.3
Published
API wrapper for PoolSketch.
Downloads
6
Readme
poolsketch
About
API wrapper for PoolSketch.
Installation
npm install poolsketch
yarn add poolsketch
pnpm install poolsketch
Usage
import { Client } from 'poolsketch';
const client = new Client();
client.notes.fetch('kyunkyun05').then(async note => {
const edited = await note.edit({ darkMode: true });
console.log(edited.editedAt);
});