@altostra/core
Version:
Core library for shared types and logic
12 lines (11 loc) • 568 B
TypeScript
import type { GitHubGitHost } from "../../git-host/GitHubGitHost";
import type { GithubTemplatesProviderOptions } from "./Github";
import { TemplatesManager } from "./TemplatesManager";
export * from "./Common";
export * from "./TemplatesManager";
declare const templatesManager: TemplatesManager;
export { templatesManager };
export declare function getTemplatesManager({ githubProviderOptions, }: GetTemplatesManagerParams): TemplatesManager;
export interface GetTemplatesManagerParams {
githubProviderOptions?: GitHubGitHost | GithubTemplatesProviderOptions;
}