/** * Creates a top level class from each file's root element and defines the initial structure of the symbol tree. * @module defineModules */ import FilePayload from "./file.payload"; /** * Creates a top level class from each file's root element and defines the initial structure of the symbol tree. * @param {FilePayload[]} files The files to look at * @param {Function} callback The callback to raise when it is done. It will get 2 parameters, a standard `err` parameter and `symbols` of the entire symbol tree */ export default function (files: FilePayload[], callback: Function): void; //# sourceMappingURL=define.modules.d.ts.map