Skip to content

TypeScript SDK

Installation

npm install szgf

Usage

import { SZGFClient } from 'szgf';

const client = new SZGFClient();
await client.downloadGuides();
const guides = await client.readGuides();
console.log(guides['1011']); // Anby
const anbyGuide = await client.getGuide('Anby');
await client.clearGuides();