UNPKG

245 BTypeScriptView Raw
1import { ComposerJsonFile, ComposerLockFile } from '../types';
2export declare class FileParser {
3 static parseLockFile(lockFileContent: string): ComposerLockFile;
4 static parseManifestFile(manifestFileContent: string): ComposerJsonFile;
5}