xsd-assembler
Version:
This project aims to assemble, merge, and resolve dependencies in XSD files
11 lines (10 loc) • 339 B
TypeScript
import { XSDLoaderImpl } from './protocols';
export declare class XSDLoader implements XSDLoaderImpl {
private schemaAttributes;
private extractSchemaAttributes;
private mergeSchemaAttributes;
getSchemaAttributes(): {
[key: string]: string;
};
load(filePath: string, firstFile: boolean): Promise<string>;
}