mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-25 09:51:01 -05:00
Added reflection
module
This commit is contained in:
parent
ccd4319b20
commit
8db475ab28
1 changed files with 33 additions and 0 deletions
33
src/utils/reflection/index.ts
Normal file
33
src/utils/reflection/index.ts
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
export {
|
||||||
|
ImportDirective,
|
||||||
|
ExecutedImportDirective,
|
||||||
|
ImportDirectiveExecutionOptions,
|
||||||
|
|
||||||
|
parseImportDirective,
|
||||||
|
formatImportDirective,
|
||||||
|
|
||||||
|
executeImportDirective,
|
||||||
|
} from "./import-directive";
|
||||||
|
|
||||||
|
export {
|
||||||
|
ModuleLoader,
|
||||||
|
NODE_MODULE_LOADER,
|
||||||
|
DYNAMIC_MODULE_LOADER,
|
||||||
|
} from "./module-loader";
|
||||||
|
|
||||||
|
export {
|
||||||
|
defineNestedProperty,
|
||||||
|
defineNestedProperties,
|
||||||
|
|
||||||
|
getPropertyDescriptor,
|
||||||
|
getAllPropertyDescriptors,
|
||||||
|
|
||||||
|
getAllKeys,
|
||||||
|
getAllNames,
|
||||||
|
getAllSymbols,
|
||||||
|
getAllValues,
|
||||||
|
getAllEntries,
|
||||||
|
getOwnEntries,
|
||||||
|
|
||||||
|
merge,
|
||||||
|
} from "./object-reflector";
|
Loading…
Reference in a new issue