import { GiteaDSL, GiteaJSONDSL } from "../dsl/GiteaDSL"; import { Api as NodeGitea } from "gitea-js"; import { Platform } from "./platform"; /** Handles conforming to the Platform Interface for GitHub, API work is handle by GitHubAPI */ export declare type GiteaType = Platform & { api: GiteaAPI; }; export declare function Gitea(api: GiteaAPI): GiteaType; export declare const githubJSONToGitHubDSL: (gh: GiteaJSONDSL, api: NodeGitea<"token">) => GiteaDSL; import { GiteaAPI } from "./gitea/GiteaAPI";