Closed JordanBoltonMN closed 6 months ago
This update should be a functional no-op. It rewrites how we generate a library from a collection of symbols. For example, LibraryUtils.createLibrary now has the type signature:
LibraryUtils.createLibrary
createLibrary( staticLibraryDefinitionCollection: ReadonlyArray<ReadonlyArray<LibrarySymbol.LibrarySymbol>>, dynamicLibraryDefinitionCollection: ReadonlyArray<() => ReadonlyMap<string, Library.TLibraryDefinition>>, )
The main things to look at are how we're generating it in SettingsUtils and follow the logic from there.
SettingsUtils
This update should be a functional no-op. It rewrites how we generate a library from a collection of symbols. For example,
LibraryUtils.createLibrary
now has the type signature:The main things to look at are how we're generating it in
SettingsUtils
and follow the logic from there.