UNPKG

motionlink-cli

Version:

Making it easy to use Notion as a Content Management system for personal websites, portfolios, blogs, business homepages, and other kinds of static websites.

12 lines (11 loc) 337 B
export default class GitService { /** * Returns the git remote url for the given folder. * * Yields empty string if non exists. */ findGitRemoteUrl(path: string): Promise<string>; private static _instance; static get instance(): GitService; static setMockedInstance(instance: GitService): void; }