TypeScript SDK
Node.js / TypeScript gRPC client with API shape consistent with the C API.
Quickstart
import { TinCore } from 'tijet-grpc';
const client = new TinCore();
await client.connect();
await client.setParameter('print_speed', '100');
const speed = await client.getParameter('print_speed');
console.log(`print_speed = ${speed}`);
await client.close();
Note: For the complete TypeScript API reference, see the Chinese documentation.