@storyblok/create-demo
Version:
A CLI tool for quickly starting a Storyblok project
16 lines (15 loc) • 568 B
TypeScript
interface CreatePublicFolderOptions {
framework: string;
publicPath: string;
generator: string;
localhostPath: string;
}
export declare function createPublicFolder({ framework, publicPath, generator, localhostPath, }: CreatePublicFolderOptions): void;
interface AddCustomParentFrameworkOptions {
folder: string;
framework: string;
frameworkDetails: any;
localhostPath: string;
}
export declare function addCustomParentFramework({ folder, framework, frameworkDetails, localhostPath, }: AddCustomParentFrameworkOptions): void;
export {};