TypeScript SDK for the a00 API service.
npm install a00import { A00 } from 'a00';
const API_KEY = 'SOME_API_KEY';
const a00 = new A00(API_KEY);
const filePath = './path/to/file';
const key = await a00.upload(filePath);
const fileContent = await a00.get(key);npm run build