0.0.1-alpha • Published 4 years ago

gitea-ts-client v0.0.1-alpha

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

gitea-ts-client

This package contains a automatically generated isomorphic SDK for GiteaAPI.

Example

import * as msRestNodeAuth from "@azure/ms-rest-nodeauth"; // Might be useful for your auth needs
import { GiteaAPI, GiteaAPIModels, GiteaAPIMappers } from "gitea-ts-client";

const client = new GiteaAPI();
client.getVersion().then((result) => {
  console.log("The result is:");
  console.log(result);
});