mili
Version:
Scaffolding with continuous control over the development of the project.
26 lines (25 loc) • 540 B
TypeScript
import { Exec } from "../interface/loader";
interface GitLoaderOptions {
/**
* The git remote
*
* @default 'origin'
*/
remote: string;
}
interface GitHubResource {
repository: {
isGitHubRepo: boolean;
gitHubOwner?: string;
gitHubRepoName?: string;
};
}
interface GitResource extends GitHubResource {
repository: {
isRepo: boolean;
isGitHubRepo: boolean;
url?: string;
};
}
export declare const exec: Exec<GitLoaderOptions, GitResource>;
export {};