@techmmunity/symbiosis
Version:
Symbiosis - The Ultimate OM For All Databases
19 lines (18 loc) • 761 B
TypeScript
interface InternalCreateDotSymbiosisDirParams {
getRootPath: (path: string) => string;
mkdirSync: (path: string, options: {
recursive: true;
}) => void;
existsSync: (path: string) => boolean;
readFileSync: (path: string, encoding: "utf8") => string;
writeFileSync: (path: string, data: string) => void;
path: string;
}
export declare const gitIgnoreMessage = "# Do not touch it! Symb needs this exact exclude, or will generate it again.\n/.symbiosis\n";
/**
* **DO NOT USE IT!!!!**
*
* Created so we can test the function with Jest
*/
export declare const internalCreateDotSymbiosisDir: ({ getRootPath, mkdirSync, existsSync, readFileSync, writeFileSync, path, }: InternalCreateDotSymbiosisDirParams) => void;
export {};