UNPKG

@storyblok/create-demo

Version:

A CLI tool for quickly starting a Storyblok project

16 lines (15 loc) 355 B
interface Options { git?: any; shallow?: boolean; submodules?: boolean; checkout?: string; } /** * * @param {string} repo repo's clone path * @param {string} targetPath save path * @param {Object} opts options * @return {promise} */ export default function (repo: string, targetPath: string, opts: Options): Promise<any>; export {};