@parametricos/bcf-js
Version:
BCF.js is a BIM Collaboration Format (BCF) reader & parser.
34 lines • 820 B
TypeScript
import { IMarkup } from "./markup";
export interface IProject {
project_id: string;
name: string;
version: string;
markups?: IMarkup[];
reader: any;
extension_schema: IExtensionsSchema | undefined;
}
export interface IExtensionsSchema {
"?xml": {
version: string;
encoding: string;
standalone: string;
};
schema: {
xmlns: string;
redefine: {
schema_location: string;
simple_type: [
name: string,
restriction: {
base: string;
enumeration: [
{
value: string;
}
];
}
];
};
};
}
//# sourceMappingURL=project.d.ts.map