projex
Version:
A command line to manage the workflow
6 lines (5 loc) • 399 B
TypeScript
import { ContentManifest } from '../models';
export declare const getFilesInCurrentDirectory: (srcpath: string) => Promise<Array<string>>;
export declare const getManifestsContent: (files: Array<string>) => Promise<Array<ContentManifest>>;
export declare const getManifestContent: (directory: string) => Promise<ContentManifest>;
export declare const getInformation: (dir: string) => Promise<void>;