@idlizer/core 2.1.10-arktscgen-4 → 2.1.10-arktscgen-6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lib/src/Language.d.ts +0 -1
- package/build/lib/src/Language.js +1 -3
- package/build/lib/src/LanguageWriters/ArgConvertors.d.ts +18 -7
- package/build/lib/src/LanguageWriters/ArgConvertors.js +95 -103
- package/build/lib/src/LanguageWriters/LanguageWriter.d.ts +13 -7
- package/build/lib/src/LanguageWriters/LanguageWriter.js +10 -2
- package/build/lib/src/LanguageWriters/common.d.ts +1 -0
- package/build/lib/src/LanguageWriters/common.js +2 -1
- package/build/lib/src/LanguageWriters/convertors/CJConvertors.d.ts +0 -1
- package/build/lib/src/LanguageWriters/convertors/CJConvertors.js +1 -3
- package/build/lib/src/LanguageWriters/convertors/CppConvertors.d.ts +14 -8
- package/build/lib/src/LanguageWriters/convertors/CppConvertors.js +88 -36
- package/build/lib/src/LanguageWriters/convertors/ETSConvertors.d.ts +1 -0
- package/build/lib/src/LanguageWriters/convertors/ETSConvertors.js +10 -8
- package/build/lib/src/LanguageWriters/convertors/InteropConvertors.js +1 -1
- package/build/lib/src/LanguageWriters/convertors/KotlinConvertors.js +9 -5
- package/build/lib/src/LanguageWriters/convertors/TSConvertors.d.ts +4 -4
- package/build/lib/src/LanguageWriters/convertors/TSConvertors.js +98 -44
- package/build/lib/src/LanguageWriters/index.d.ts +5 -4
- package/build/lib/src/LanguageWriters/index.js +8 -15
- package/build/lib/src/LanguageWriters/nameConvertor.d.ts +2 -0
- package/build/lib/src/LanguageWriters/nameConvertor.js +11 -0
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.d.ts +2 -0
- package/build/lib/src/LanguageWriters/writers/CJLanguageWriter.js +13 -1
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.d.ts +2 -0
- package/build/lib/src/LanguageWriters/writers/CppLanguageWriter.js +8 -2
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.d.ts +2 -10
- package/build/lib/src/LanguageWriters/writers/ETSLanguageWriter.js +52 -92
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.d.ts +8 -0
- package/build/lib/src/LanguageWriters/writers/KotlinLanguageWriter.js +75 -27
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.d.ts +5 -0
- package/build/lib/src/LanguageWriters/writers/TsLanguageWriter.js +58 -18
- package/build/lib/src/LibraryInterface.d.ts +0 -1
- package/build/lib/src/config.d.ts +2 -1461
- package/build/lib/src/config.js +16 -32
- package/build/lib/src/configMerge.d.ts +3 -0
- package/build/lib/src/configMerge.js +63 -0
- package/build/lib/src/diagnostictypes.d.ts +1 -5
- package/build/lib/src/diagnostictypes.js +1 -27
- package/build/lib/src/from-idl/DtsPrinter.js +13 -6
- package/build/lib/src/from-idl/IDLLinter.d.ts +3 -4
- package/build/lib/src/from-idl/IDLLinter.js +30 -32
- package/build/lib/src/from-idl/deserialize.d.ts +3 -4
- package/build/lib/src/from-idl/deserialize.js +30 -642
- package/build/lib/src/from-idl/parser.d.ts +20 -2
- package/build/lib/src/from-idl/parser.js +97 -29
- package/build/lib/src/idl/builders.d.ts +43 -0
- package/build/lib/src/idl/builders.js +135 -0
- package/build/lib/src/idl/discriminators.d.ts +53 -0
- package/build/lib/src/idl/discriminators.js +232 -0
- package/build/lib/src/idl/dump.d.ts +48 -0
- package/build/lib/src/idl/dump.js +327 -0
- package/build/lib/src/idl/index.d.ts +9 -0
- package/build/lib/src/idl/index.js +23 -0
- package/build/lib/src/idl/keywords.d.ts +2 -0
- package/build/lib/src/{options.js → idl/keywords.js} +7 -3
- package/build/lib/src/idl/node.d.ts +233 -0
- package/build/lib/src/idl/node.js +103 -0
- package/build/lib/src/idl/stdlib.d.ts +34 -0
- package/build/lib/src/idl/stdlib.js +54 -0
- package/build/lib/src/idl/utils.d.ts +44 -0
- package/build/lib/src/idl/utils.js +215 -0
- package/build/lib/src/idl/visitors.d.ts +15 -0
- package/build/lib/src/idl/visitors.js +593 -0
- package/build/lib/src/index.d.ts +5 -6
- package/build/lib/src/index.js +6 -7
- package/build/lib/src/inheritance.d.ts +0 -2
- package/build/lib/src/inheritance.js +0 -17
- package/build/lib/src/inputPaths.d.ts +11 -0
- package/build/lib/src/inputPaths.js +81 -0
- package/build/lib/src/languageSpecificKeywords.d.ts +0 -1
- package/build/lib/src/languageSpecificKeywords.js +0 -5
- package/build/lib/src/peer-generation/ConflictingDeclarations.d.ts +6 -0
- package/build/lib/src/peer-generation/ConflictingDeclarations.js +43 -0
- package/build/lib/src/peer-generation/LayoutManager.d.ts +3 -1
- package/build/lib/src/peer-generation/LayoutManager.js +15 -0
- package/build/lib/src/peer-generation/Materialized.d.ts +8 -0
- package/build/lib/src/peer-generation/Materialized.js +26 -1
- package/build/lib/src/peer-generation/PeerLibrary.d.ts +10 -18
- package/build/lib/src/peer-generation/PeerLibrary.js +63 -227
- package/build/lib/src/peer-generation/ReferenceResolver.d.ts +6 -1
- package/build/lib/src/peer-generation/ReferenceResolver.js +93 -2
- package/build/lib/src/peer-generation/idl/IdlNameConvertor.d.ts +6 -0
- package/build/lib/src/peer-generation/idl/IdlNameConvertor.js +15 -3
- package/build/lib/src/peer-generation/idl/common.d.ts +6 -2
- package/build/lib/src/peer-generation/idl/common.js +7 -7
- package/build/lib/src/peer-generation/isMaterialized.js +2 -3
- package/build/lib/src/peer-generation/modules.js +2 -0
- package/build/lib/src/peer-generation/toDeclaration.d.ts +4 -0
- package/build/lib/src/peer-generation/toDeclaration.js +53 -0
- package/build/lib/src/peer-generation/unions.d.ts +1 -1
- package/build/lib/src/peer-generation/unions.js +15 -7
- package/build/lib/src/resolveNamedNode.d.ts +1 -0
- package/build/lib/src/resolveNamedNode.js +7 -0
- package/build/lib/src/transformers/FqnTransformer.d.ts +1 -1
- package/build/lib/src/transformers/FqnTransformer.js +20 -12
- package/build/lib/src/transformers/GenericTransformer.d.ts +4 -3
- package/build/lib/src/transformers/GenericTransformer.js +252 -158
- package/build/lib/src/transformers/IdlTransformer.d.ts +6 -0
- package/build/lib/src/transformers/IdlTransformer.js +7 -0
- package/build/lib/src/transformers/NullTransformer.d.ts +1 -1
- package/build/lib/src/transformers/NullTransformer.js +27 -21
- package/build/lib/src/transformers/OnSerializeTransformer.d.ts +1 -1
- package/build/lib/src/transformers/OnSerializeTransformer.js +28 -13
- package/build/lib/src/util.d.ts +9 -39
- package/build/lib/src/util.js +65 -369
- package/package.json +44 -49
- package/build/lib/src/LanguageWriters/convertors/JavaConvertors.d.ts +0 -37
- package/build/lib/src/LanguageWriters/convertors/JavaConvertors.js +0 -210
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.d.ts +0 -83
- package/build/lib/src/LanguageWriters/writers/JavaLanguageWriter.js +0 -295
- package/build/lib/src/from-idl/webidl2-utils.d.ts +0 -21
- package/build/lib/src/from-idl/webidl2-utils.js +0 -87
- package/build/lib/src/idl.d.ts +0 -439
- package/build/lib/src/idl.js +0 -1367
- package/build/lib/src/idlize.d.ts +0 -25
- package/build/lib/src/idlize.js +0 -198
- package/build/lib/src/options.d.ts +0 -13
- package/build/lib/src/peer-generation/BuilderClass.d.ts +0 -20
- package/build/lib/src/peer-generation/BuilderClass.js +0 -68
- package/webidl2.js/dist/webidl2.js +0 -4622
- package/webidl2.js/package.json +0 -55
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConfigTypeInfer } from "./configDescriber";
|
|
1
|
+
import { ConfigSchema, ConfigTypeInfer } from "./configDescriber";
|
|
2
2
|
export declare const ModuleConfigurationSchema: {
|
|
3
3
|
schema: Record<string, {
|
|
4
4
|
validate: (x: unknown) => {
|
|
@@ -561,734 +561,6 @@ export declare const ModuleConfigurationSchema: {
|
|
|
561
561
|
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
562
562
|
onMerge(strategy: "replace" | "merge"): any;
|
|
563
563
|
};
|
|
564
|
-
export declare const HookMethodSchema: {
|
|
565
|
-
schema: Record<string, {
|
|
566
|
-
validate: (x: unknown) => {
|
|
567
|
-
box: import("./configDescriber").ValidationResult<{
|
|
568
|
-
readonly hookName: string;
|
|
569
|
-
readonly replaceImplementation: boolean;
|
|
570
|
-
}>;
|
|
571
|
-
success(): boolean;
|
|
572
|
-
unwrap(message?: string | undefined): {
|
|
573
|
-
readonly hookName: string;
|
|
574
|
-
readonly replaceImplementation: boolean;
|
|
575
|
-
};
|
|
576
|
-
error(): string;
|
|
577
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
578
|
-
readonly hookName: string;
|
|
579
|
-
readonly replaceImplementation: boolean;
|
|
580
|
-
}>;
|
|
581
|
-
or<U>(x: U): {
|
|
582
|
-
box: import("./configDescriber").ValidationResult<{
|
|
583
|
-
readonly hookName: string;
|
|
584
|
-
readonly replaceImplementation: boolean;
|
|
585
|
-
} | U>;
|
|
586
|
-
success(): boolean;
|
|
587
|
-
unwrap(message?: string | undefined): {
|
|
588
|
-
readonly hookName: string;
|
|
589
|
-
readonly replaceImplementation: boolean;
|
|
590
|
-
} | U;
|
|
591
|
-
error(): string;
|
|
592
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
593
|
-
readonly hookName: string;
|
|
594
|
-
readonly replaceImplementation: boolean;
|
|
595
|
-
} | U>;
|
|
596
|
-
or<U_1>(x: U_1): {
|
|
597
|
-
box: import("./configDescriber").ValidationResult<{
|
|
598
|
-
readonly hookName: string;
|
|
599
|
-
readonly replaceImplementation: boolean;
|
|
600
|
-
} | U | U_1>;
|
|
601
|
-
success(): boolean;
|
|
602
|
-
unwrap(message?: string | undefined): {
|
|
603
|
-
readonly hookName: string;
|
|
604
|
-
readonly replaceImplementation: boolean;
|
|
605
|
-
} | U | U_1;
|
|
606
|
-
error(): string;
|
|
607
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
608
|
-
readonly hookName: string;
|
|
609
|
-
readonly replaceImplementation: boolean;
|
|
610
|
-
} | U | U_1>;
|
|
611
|
-
or<U_2>(x: U_2): {
|
|
612
|
-
box: import("./configDescriber").ValidationResult<{
|
|
613
|
-
readonly hookName: string;
|
|
614
|
-
readonly replaceImplementation: boolean;
|
|
615
|
-
} | U | U_1 | U_2>;
|
|
616
|
-
success(): boolean;
|
|
617
|
-
unwrap(message?: string | undefined): {
|
|
618
|
-
readonly hookName: string;
|
|
619
|
-
readonly replaceImplementation: boolean;
|
|
620
|
-
} | U | U_1 | U_2;
|
|
621
|
-
error(): string;
|
|
622
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
623
|
-
readonly hookName: string;
|
|
624
|
-
readonly replaceImplementation: boolean;
|
|
625
|
-
} | U | U_1 | U_2>;
|
|
626
|
-
or<U_3>(x: U_3): {
|
|
627
|
-
box: import("./configDescriber").ValidationResult<{
|
|
628
|
-
readonly hookName: string;
|
|
629
|
-
readonly replaceImplementation: boolean;
|
|
630
|
-
} | U | U_1 | U_2 | U_3>;
|
|
631
|
-
success(): boolean;
|
|
632
|
-
unwrap(message?: string | undefined): {
|
|
633
|
-
readonly hookName: string;
|
|
634
|
-
readonly replaceImplementation: boolean;
|
|
635
|
-
} | U | U_1 | U_2 | U_3;
|
|
636
|
-
error(): string;
|
|
637
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
638
|
-
readonly hookName: string;
|
|
639
|
-
readonly replaceImplementation: boolean;
|
|
640
|
-
} | U | U_1 | U_2 | U_3>;
|
|
641
|
-
or<U_4>(x: U_4): {
|
|
642
|
-
box: import("./configDescriber").ValidationResult<{
|
|
643
|
-
readonly hookName: string;
|
|
644
|
-
readonly replaceImplementation: boolean;
|
|
645
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
646
|
-
success(): boolean;
|
|
647
|
-
unwrap(message?: string | undefined): {
|
|
648
|
-
readonly hookName: string;
|
|
649
|
-
readonly replaceImplementation: boolean;
|
|
650
|
-
} | U | U_1 | U_2 | U_3 | U_4;
|
|
651
|
-
error(): string;
|
|
652
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
653
|
-
readonly hookName: string;
|
|
654
|
-
readonly replaceImplementation: boolean;
|
|
655
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
656
|
-
or<U_5>(x: U_5): {
|
|
657
|
-
box: import("./configDescriber").ValidationResult<{
|
|
658
|
-
readonly hookName: string;
|
|
659
|
-
readonly replaceImplementation: boolean;
|
|
660
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
661
|
-
success(): boolean;
|
|
662
|
-
unwrap(message?: string | undefined): {
|
|
663
|
-
readonly hookName: string;
|
|
664
|
-
readonly replaceImplementation: boolean;
|
|
665
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
666
|
-
error(): string;
|
|
667
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
668
|
-
readonly hookName: string;
|
|
669
|
-
readonly replaceImplementation: boolean;
|
|
670
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
671
|
-
or<U_6>(x: U_6): {
|
|
672
|
-
box: import("./configDescriber").ValidationResult<{
|
|
673
|
-
readonly hookName: string;
|
|
674
|
-
readonly replaceImplementation: boolean;
|
|
675
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
676
|
-
success(): boolean;
|
|
677
|
-
unwrap(message?: string | undefined): {
|
|
678
|
-
readonly hookName: string;
|
|
679
|
-
readonly replaceImplementation: boolean;
|
|
680
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
681
|
-
error(): string;
|
|
682
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
683
|
-
readonly hookName: string;
|
|
684
|
-
readonly replaceImplementation: boolean;
|
|
685
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
686
|
-
or<U_7>(x: U_7): {
|
|
687
|
-
box: import("./configDescriber").ValidationResult<{
|
|
688
|
-
readonly hookName: string;
|
|
689
|
-
readonly replaceImplementation: boolean;
|
|
690
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
691
|
-
success(): boolean;
|
|
692
|
-
unwrap(message?: string | undefined): {
|
|
693
|
-
readonly hookName: string;
|
|
694
|
-
readonly replaceImplementation: boolean;
|
|
695
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
696
|
-
error(): string;
|
|
697
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
698
|
-
readonly hookName: string;
|
|
699
|
-
readonly replaceImplementation: boolean;
|
|
700
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
701
|
-
or<U_8>(x: U_8): {
|
|
702
|
-
box: import("./configDescriber").ValidationResult<{
|
|
703
|
-
readonly hookName: string;
|
|
704
|
-
readonly replaceImplementation: boolean;
|
|
705
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
706
|
-
success(): boolean;
|
|
707
|
-
unwrap(message?: string | undefined): {
|
|
708
|
-
readonly hookName: string;
|
|
709
|
-
readonly replaceImplementation: boolean;
|
|
710
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
711
|
-
error(): string;
|
|
712
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
713
|
-
readonly hookName: string;
|
|
714
|
-
readonly replaceImplementation: boolean;
|
|
715
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
716
|
-
or<U_9>(x: U_9): {
|
|
717
|
-
box: import("./configDescriber").ValidationResult<{
|
|
718
|
-
readonly hookName: string;
|
|
719
|
-
readonly replaceImplementation: boolean;
|
|
720
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
721
|
-
success(): boolean;
|
|
722
|
-
unwrap(message?: string | undefined): {
|
|
723
|
-
readonly hookName: string;
|
|
724
|
-
readonly replaceImplementation: boolean;
|
|
725
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
726
|
-
error(): string;
|
|
727
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
728
|
-
readonly hookName: string;
|
|
729
|
-
readonly replaceImplementation: boolean;
|
|
730
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
731
|
-
or<U_10>(x: U_10): any;
|
|
732
|
-
};
|
|
733
|
-
};
|
|
734
|
-
};
|
|
735
|
-
};
|
|
736
|
-
};
|
|
737
|
-
};
|
|
738
|
-
};
|
|
739
|
-
};
|
|
740
|
-
};
|
|
741
|
-
};
|
|
742
|
-
};
|
|
743
|
-
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
744
|
-
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
745
|
-
onMerge(strategy: "replace" | "merge"): any;
|
|
746
|
-
}>;
|
|
747
|
-
validate: (x: unknown) => {
|
|
748
|
-
box: import("./configDescriber").ValidationResult<{
|
|
749
|
-
readonly hookName: string;
|
|
750
|
-
readonly replaceImplementation: boolean;
|
|
751
|
-
}>;
|
|
752
|
-
success(): boolean;
|
|
753
|
-
unwrap(message?: string | undefined): {
|
|
754
|
-
readonly hookName: string;
|
|
755
|
-
readonly replaceImplementation: boolean;
|
|
756
|
-
};
|
|
757
|
-
error(): string;
|
|
758
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
759
|
-
readonly hookName: string;
|
|
760
|
-
readonly replaceImplementation: boolean;
|
|
761
|
-
}>;
|
|
762
|
-
or<U>(x: U): {
|
|
763
|
-
box: import("./configDescriber").ValidationResult<{
|
|
764
|
-
readonly hookName: string;
|
|
765
|
-
readonly replaceImplementation: boolean;
|
|
766
|
-
} | U>;
|
|
767
|
-
success(): boolean;
|
|
768
|
-
unwrap(message?: string | undefined): {
|
|
769
|
-
readonly hookName: string;
|
|
770
|
-
readonly replaceImplementation: boolean;
|
|
771
|
-
} | U;
|
|
772
|
-
error(): string;
|
|
773
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
774
|
-
readonly hookName: string;
|
|
775
|
-
readonly replaceImplementation: boolean;
|
|
776
|
-
} | U>;
|
|
777
|
-
or<U_1>(x: U_1): {
|
|
778
|
-
box: import("./configDescriber").ValidationResult<{
|
|
779
|
-
readonly hookName: string;
|
|
780
|
-
readonly replaceImplementation: boolean;
|
|
781
|
-
} | U | U_1>;
|
|
782
|
-
success(): boolean;
|
|
783
|
-
unwrap(message?: string | undefined): {
|
|
784
|
-
readonly hookName: string;
|
|
785
|
-
readonly replaceImplementation: boolean;
|
|
786
|
-
} | U | U_1;
|
|
787
|
-
error(): string;
|
|
788
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
789
|
-
readonly hookName: string;
|
|
790
|
-
readonly replaceImplementation: boolean;
|
|
791
|
-
} | U | U_1>;
|
|
792
|
-
or<U_2>(x: U_2): {
|
|
793
|
-
box: import("./configDescriber").ValidationResult<{
|
|
794
|
-
readonly hookName: string;
|
|
795
|
-
readonly replaceImplementation: boolean;
|
|
796
|
-
} | U | U_1 | U_2>;
|
|
797
|
-
success(): boolean;
|
|
798
|
-
unwrap(message?: string | undefined): {
|
|
799
|
-
readonly hookName: string;
|
|
800
|
-
readonly replaceImplementation: boolean;
|
|
801
|
-
} | U | U_1 | U_2;
|
|
802
|
-
error(): string;
|
|
803
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
804
|
-
readonly hookName: string;
|
|
805
|
-
readonly replaceImplementation: boolean;
|
|
806
|
-
} | U | U_1 | U_2>;
|
|
807
|
-
or<U_3>(x: U_3): {
|
|
808
|
-
box: import("./configDescriber").ValidationResult<{
|
|
809
|
-
readonly hookName: string;
|
|
810
|
-
readonly replaceImplementation: boolean;
|
|
811
|
-
} | U | U_1 | U_2 | U_3>;
|
|
812
|
-
success(): boolean;
|
|
813
|
-
unwrap(message?: string | undefined): {
|
|
814
|
-
readonly hookName: string;
|
|
815
|
-
readonly replaceImplementation: boolean;
|
|
816
|
-
} | U | U_1 | U_2 | U_3;
|
|
817
|
-
error(): string;
|
|
818
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
819
|
-
readonly hookName: string;
|
|
820
|
-
readonly replaceImplementation: boolean;
|
|
821
|
-
} | U | U_1 | U_2 | U_3>;
|
|
822
|
-
or<U_4>(x: U_4): {
|
|
823
|
-
box: import("./configDescriber").ValidationResult<{
|
|
824
|
-
readonly hookName: string;
|
|
825
|
-
readonly replaceImplementation: boolean;
|
|
826
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
827
|
-
success(): boolean;
|
|
828
|
-
unwrap(message?: string | undefined): {
|
|
829
|
-
readonly hookName: string;
|
|
830
|
-
readonly replaceImplementation: boolean;
|
|
831
|
-
} | U | U_1 | U_2 | U_3 | U_4;
|
|
832
|
-
error(): string;
|
|
833
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
834
|
-
readonly hookName: string;
|
|
835
|
-
readonly replaceImplementation: boolean;
|
|
836
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
837
|
-
or<U_5>(x: U_5): {
|
|
838
|
-
box: import("./configDescriber").ValidationResult<{
|
|
839
|
-
readonly hookName: string;
|
|
840
|
-
readonly replaceImplementation: boolean;
|
|
841
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
842
|
-
success(): boolean;
|
|
843
|
-
unwrap(message?: string | undefined): {
|
|
844
|
-
readonly hookName: string;
|
|
845
|
-
readonly replaceImplementation: boolean;
|
|
846
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
847
|
-
error(): string;
|
|
848
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
849
|
-
readonly hookName: string;
|
|
850
|
-
readonly replaceImplementation: boolean;
|
|
851
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
852
|
-
or<U_6>(x: U_6): {
|
|
853
|
-
box: import("./configDescriber").ValidationResult<{
|
|
854
|
-
readonly hookName: string;
|
|
855
|
-
readonly replaceImplementation: boolean;
|
|
856
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
857
|
-
success(): boolean;
|
|
858
|
-
unwrap(message?: string | undefined): {
|
|
859
|
-
readonly hookName: string;
|
|
860
|
-
readonly replaceImplementation: boolean;
|
|
861
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
862
|
-
error(): string;
|
|
863
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
864
|
-
readonly hookName: string;
|
|
865
|
-
readonly replaceImplementation: boolean;
|
|
866
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
867
|
-
or<U_7>(x: U_7): {
|
|
868
|
-
box: import("./configDescriber").ValidationResult<{
|
|
869
|
-
readonly hookName: string;
|
|
870
|
-
readonly replaceImplementation: boolean;
|
|
871
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
872
|
-
success(): boolean;
|
|
873
|
-
unwrap(message?: string | undefined): {
|
|
874
|
-
readonly hookName: string;
|
|
875
|
-
readonly replaceImplementation: boolean;
|
|
876
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
877
|
-
error(): string;
|
|
878
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
879
|
-
readonly hookName: string;
|
|
880
|
-
readonly replaceImplementation: boolean;
|
|
881
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
882
|
-
or<U_8>(x: U_8): {
|
|
883
|
-
box: import("./configDescriber").ValidationResult<{
|
|
884
|
-
readonly hookName: string;
|
|
885
|
-
readonly replaceImplementation: boolean;
|
|
886
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
887
|
-
success(): boolean;
|
|
888
|
-
unwrap(message?: string | undefined): {
|
|
889
|
-
readonly hookName: string;
|
|
890
|
-
readonly replaceImplementation: boolean;
|
|
891
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
892
|
-
error(): string;
|
|
893
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
894
|
-
readonly hookName: string;
|
|
895
|
-
readonly replaceImplementation: boolean;
|
|
896
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
897
|
-
or<U_9>(x: U_9): {
|
|
898
|
-
box: import("./configDescriber").ValidationResult<{
|
|
899
|
-
readonly hookName: string;
|
|
900
|
-
readonly replaceImplementation: boolean;
|
|
901
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
902
|
-
success(): boolean;
|
|
903
|
-
unwrap(message?: string | undefined): {
|
|
904
|
-
readonly hookName: string;
|
|
905
|
-
readonly replaceImplementation: boolean;
|
|
906
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
907
|
-
error(): string;
|
|
908
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
909
|
-
readonly hookName: string;
|
|
910
|
-
readonly replaceImplementation: boolean;
|
|
911
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
912
|
-
or<U_10>(x: U_10): any;
|
|
913
|
-
};
|
|
914
|
-
};
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
};
|
|
918
|
-
};
|
|
919
|
-
};
|
|
920
|
-
};
|
|
921
|
-
};
|
|
922
|
-
};
|
|
923
|
-
};
|
|
924
|
-
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
925
|
-
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
926
|
-
onMerge(strategy: "replace" | "merge"): any;
|
|
927
|
-
};
|
|
928
|
-
export declare const TransformOnSerializeSchema: {
|
|
929
|
-
schema: Record<string, {
|
|
930
|
-
validate: (x: unknown) => {
|
|
931
|
-
box: import("./configDescriber").ValidationResult<{
|
|
932
|
-
readonly from: string;
|
|
933
|
-
readonly to: string;
|
|
934
|
-
}>;
|
|
935
|
-
success(): boolean;
|
|
936
|
-
unwrap(message?: string | undefined): {
|
|
937
|
-
readonly from: string;
|
|
938
|
-
readonly to: string;
|
|
939
|
-
};
|
|
940
|
-
error(): string;
|
|
941
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
942
|
-
readonly from: string;
|
|
943
|
-
readonly to: string;
|
|
944
|
-
}>;
|
|
945
|
-
or<U>(x: U): {
|
|
946
|
-
box: import("./configDescriber").ValidationResult<{
|
|
947
|
-
readonly from: string;
|
|
948
|
-
readonly to: string;
|
|
949
|
-
} | U>;
|
|
950
|
-
success(): boolean;
|
|
951
|
-
unwrap(message?: string | undefined): {
|
|
952
|
-
readonly from: string;
|
|
953
|
-
readonly to: string;
|
|
954
|
-
} | U;
|
|
955
|
-
error(): string;
|
|
956
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
957
|
-
readonly from: string;
|
|
958
|
-
readonly to: string;
|
|
959
|
-
} | U>;
|
|
960
|
-
or<U_1>(x: U_1): {
|
|
961
|
-
box: import("./configDescriber").ValidationResult<{
|
|
962
|
-
readonly from: string;
|
|
963
|
-
readonly to: string;
|
|
964
|
-
} | U | U_1>;
|
|
965
|
-
success(): boolean;
|
|
966
|
-
unwrap(message?: string | undefined): {
|
|
967
|
-
readonly from: string;
|
|
968
|
-
readonly to: string;
|
|
969
|
-
} | U | U_1;
|
|
970
|
-
error(): string;
|
|
971
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
972
|
-
readonly from: string;
|
|
973
|
-
readonly to: string;
|
|
974
|
-
} | U | U_1>;
|
|
975
|
-
or<U_2>(x: U_2): {
|
|
976
|
-
box: import("./configDescriber").ValidationResult<{
|
|
977
|
-
readonly from: string;
|
|
978
|
-
readonly to: string;
|
|
979
|
-
} | U | U_1 | U_2>;
|
|
980
|
-
success(): boolean;
|
|
981
|
-
unwrap(message?: string | undefined): {
|
|
982
|
-
readonly from: string;
|
|
983
|
-
readonly to: string;
|
|
984
|
-
} | U | U_1 | U_2;
|
|
985
|
-
error(): string;
|
|
986
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
987
|
-
readonly from: string;
|
|
988
|
-
readonly to: string;
|
|
989
|
-
} | U | U_1 | U_2>;
|
|
990
|
-
or<U_3>(x: U_3): {
|
|
991
|
-
box: import("./configDescriber").ValidationResult<{
|
|
992
|
-
readonly from: string;
|
|
993
|
-
readonly to: string;
|
|
994
|
-
} | U | U_1 | U_2 | U_3>;
|
|
995
|
-
success(): boolean;
|
|
996
|
-
unwrap(message?: string | undefined): {
|
|
997
|
-
readonly from: string;
|
|
998
|
-
readonly to: string;
|
|
999
|
-
} | U | U_1 | U_2 | U_3;
|
|
1000
|
-
error(): string;
|
|
1001
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1002
|
-
readonly from: string;
|
|
1003
|
-
readonly to: string;
|
|
1004
|
-
} | U | U_1 | U_2 | U_3>;
|
|
1005
|
-
or<U_4>(x: U_4): {
|
|
1006
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1007
|
-
readonly from: string;
|
|
1008
|
-
readonly to: string;
|
|
1009
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1010
|
-
success(): boolean;
|
|
1011
|
-
unwrap(message?: string | undefined): {
|
|
1012
|
-
readonly from: string;
|
|
1013
|
-
readonly to: string;
|
|
1014
|
-
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1015
|
-
error(): string;
|
|
1016
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1017
|
-
readonly from: string;
|
|
1018
|
-
readonly to: string;
|
|
1019
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1020
|
-
or<U_5>(x: U_5): {
|
|
1021
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1022
|
-
readonly from: string;
|
|
1023
|
-
readonly to: string;
|
|
1024
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1025
|
-
success(): boolean;
|
|
1026
|
-
unwrap(message?: string | undefined): {
|
|
1027
|
-
readonly from: string;
|
|
1028
|
-
readonly to: string;
|
|
1029
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1030
|
-
error(): string;
|
|
1031
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1032
|
-
readonly from: string;
|
|
1033
|
-
readonly to: string;
|
|
1034
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1035
|
-
or<U_6>(x: U_6): {
|
|
1036
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1037
|
-
readonly from: string;
|
|
1038
|
-
readonly to: string;
|
|
1039
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1040
|
-
success(): boolean;
|
|
1041
|
-
unwrap(message?: string | undefined): {
|
|
1042
|
-
readonly from: string;
|
|
1043
|
-
readonly to: string;
|
|
1044
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
1045
|
-
error(): string;
|
|
1046
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1047
|
-
readonly from: string;
|
|
1048
|
-
readonly to: string;
|
|
1049
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1050
|
-
or<U_7>(x: U_7): {
|
|
1051
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1052
|
-
readonly from: string;
|
|
1053
|
-
readonly to: string;
|
|
1054
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1055
|
-
success(): boolean;
|
|
1056
|
-
unwrap(message?: string | undefined): {
|
|
1057
|
-
readonly from: string;
|
|
1058
|
-
readonly to: string;
|
|
1059
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
1060
|
-
error(): string;
|
|
1061
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1062
|
-
readonly from: string;
|
|
1063
|
-
readonly to: string;
|
|
1064
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1065
|
-
or<U_8>(x: U_8): {
|
|
1066
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1067
|
-
readonly from: string;
|
|
1068
|
-
readonly to: string;
|
|
1069
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1070
|
-
success(): boolean;
|
|
1071
|
-
unwrap(message?: string | undefined): {
|
|
1072
|
-
readonly from: string;
|
|
1073
|
-
readonly to: string;
|
|
1074
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
1075
|
-
error(): string;
|
|
1076
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1077
|
-
readonly from: string;
|
|
1078
|
-
readonly to: string;
|
|
1079
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1080
|
-
or<U_9>(x: U_9): {
|
|
1081
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1082
|
-
readonly from: string;
|
|
1083
|
-
readonly to: string;
|
|
1084
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1085
|
-
success(): boolean;
|
|
1086
|
-
unwrap(message?: string | undefined): {
|
|
1087
|
-
readonly from: string;
|
|
1088
|
-
readonly to: string;
|
|
1089
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
1090
|
-
error(): string;
|
|
1091
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1092
|
-
readonly from: string;
|
|
1093
|
-
readonly to: string;
|
|
1094
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1095
|
-
or<U_10>(x: U_10): any;
|
|
1096
|
-
};
|
|
1097
|
-
};
|
|
1098
|
-
};
|
|
1099
|
-
};
|
|
1100
|
-
};
|
|
1101
|
-
};
|
|
1102
|
-
};
|
|
1103
|
-
};
|
|
1104
|
-
};
|
|
1105
|
-
};
|
|
1106
|
-
};
|
|
1107
|
-
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
1108
|
-
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
1109
|
-
onMerge(strategy: "replace" | "merge"): any;
|
|
1110
|
-
}>;
|
|
1111
|
-
validate: (x: unknown) => {
|
|
1112
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1113
|
-
readonly from: string;
|
|
1114
|
-
readonly to: string;
|
|
1115
|
-
}>;
|
|
1116
|
-
success(): boolean;
|
|
1117
|
-
unwrap(message?: string | undefined): {
|
|
1118
|
-
readonly from: string;
|
|
1119
|
-
readonly to: string;
|
|
1120
|
-
};
|
|
1121
|
-
error(): string;
|
|
1122
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1123
|
-
readonly from: string;
|
|
1124
|
-
readonly to: string;
|
|
1125
|
-
}>;
|
|
1126
|
-
or<U>(x: U): {
|
|
1127
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1128
|
-
readonly from: string;
|
|
1129
|
-
readonly to: string;
|
|
1130
|
-
} | U>;
|
|
1131
|
-
success(): boolean;
|
|
1132
|
-
unwrap(message?: string | undefined): {
|
|
1133
|
-
readonly from: string;
|
|
1134
|
-
readonly to: string;
|
|
1135
|
-
} | U;
|
|
1136
|
-
error(): string;
|
|
1137
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1138
|
-
readonly from: string;
|
|
1139
|
-
readonly to: string;
|
|
1140
|
-
} | U>;
|
|
1141
|
-
or<U_1>(x: U_1): {
|
|
1142
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1143
|
-
readonly from: string;
|
|
1144
|
-
readonly to: string;
|
|
1145
|
-
} | U | U_1>;
|
|
1146
|
-
success(): boolean;
|
|
1147
|
-
unwrap(message?: string | undefined): {
|
|
1148
|
-
readonly from: string;
|
|
1149
|
-
readonly to: string;
|
|
1150
|
-
} | U | U_1;
|
|
1151
|
-
error(): string;
|
|
1152
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1153
|
-
readonly from: string;
|
|
1154
|
-
readonly to: string;
|
|
1155
|
-
} | U | U_1>;
|
|
1156
|
-
or<U_2>(x: U_2): {
|
|
1157
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1158
|
-
readonly from: string;
|
|
1159
|
-
readonly to: string;
|
|
1160
|
-
} | U | U_1 | U_2>;
|
|
1161
|
-
success(): boolean;
|
|
1162
|
-
unwrap(message?: string | undefined): {
|
|
1163
|
-
readonly from: string;
|
|
1164
|
-
readonly to: string;
|
|
1165
|
-
} | U | U_1 | U_2;
|
|
1166
|
-
error(): string;
|
|
1167
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1168
|
-
readonly from: string;
|
|
1169
|
-
readonly to: string;
|
|
1170
|
-
} | U | U_1 | U_2>;
|
|
1171
|
-
or<U_3>(x: U_3): {
|
|
1172
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1173
|
-
readonly from: string;
|
|
1174
|
-
readonly to: string;
|
|
1175
|
-
} | U | U_1 | U_2 | U_3>;
|
|
1176
|
-
success(): boolean;
|
|
1177
|
-
unwrap(message?: string | undefined): {
|
|
1178
|
-
readonly from: string;
|
|
1179
|
-
readonly to: string;
|
|
1180
|
-
} | U | U_1 | U_2 | U_3;
|
|
1181
|
-
error(): string;
|
|
1182
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1183
|
-
readonly from: string;
|
|
1184
|
-
readonly to: string;
|
|
1185
|
-
} | U | U_1 | U_2 | U_3>;
|
|
1186
|
-
or<U_4>(x: U_4): {
|
|
1187
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1188
|
-
readonly from: string;
|
|
1189
|
-
readonly to: string;
|
|
1190
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1191
|
-
success(): boolean;
|
|
1192
|
-
unwrap(message?: string | undefined): {
|
|
1193
|
-
readonly from: string;
|
|
1194
|
-
readonly to: string;
|
|
1195
|
-
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1196
|
-
error(): string;
|
|
1197
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1198
|
-
readonly from: string;
|
|
1199
|
-
readonly to: string;
|
|
1200
|
-
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1201
|
-
or<U_5>(x: U_5): {
|
|
1202
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1203
|
-
readonly from: string;
|
|
1204
|
-
readonly to: string;
|
|
1205
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1206
|
-
success(): boolean;
|
|
1207
|
-
unwrap(message?: string | undefined): {
|
|
1208
|
-
readonly from: string;
|
|
1209
|
-
readonly to: string;
|
|
1210
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1211
|
-
error(): string;
|
|
1212
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1213
|
-
readonly from: string;
|
|
1214
|
-
readonly to: string;
|
|
1215
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1216
|
-
or<U_6>(x: U_6): {
|
|
1217
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1218
|
-
readonly from: string;
|
|
1219
|
-
readonly to: string;
|
|
1220
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1221
|
-
success(): boolean;
|
|
1222
|
-
unwrap(message?: string | undefined): {
|
|
1223
|
-
readonly from: string;
|
|
1224
|
-
readonly to: string;
|
|
1225
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
1226
|
-
error(): string;
|
|
1227
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1228
|
-
readonly from: string;
|
|
1229
|
-
readonly to: string;
|
|
1230
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
1231
|
-
or<U_7>(x: U_7): {
|
|
1232
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1233
|
-
readonly from: string;
|
|
1234
|
-
readonly to: string;
|
|
1235
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1236
|
-
success(): boolean;
|
|
1237
|
-
unwrap(message?: string | undefined): {
|
|
1238
|
-
readonly from: string;
|
|
1239
|
-
readonly to: string;
|
|
1240
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
1241
|
-
error(): string;
|
|
1242
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1243
|
-
readonly from: string;
|
|
1244
|
-
readonly to: string;
|
|
1245
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
1246
|
-
or<U_8>(x: U_8): {
|
|
1247
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1248
|
-
readonly from: string;
|
|
1249
|
-
readonly to: string;
|
|
1250
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1251
|
-
success(): boolean;
|
|
1252
|
-
unwrap(message?: string | undefined): {
|
|
1253
|
-
readonly from: string;
|
|
1254
|
-
readonly to: string;
|
|
1255
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
1256
|
-
error(): string;
|
|
1257
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1258
|
-
readonly from: string;
|
|
1259
|
-
readonly to: string;
|
|
1260
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
1261
|
-
or<U_9>(x: U_9): {
|
|
1262
|
-
box: import("./configDescriber").ValidationResult<{
|
|
1263
|
-
readonly from: string;
|
|
1264
|
-
readonly to: string;
|
|
1265
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1266
|
-
success(): boolean;
|
|
1267
|
-
unwrap(message?: string | undefined): {
|
|
1268
|
-
readonly from: string;
|
|
1269
|
-
readonly to: string;
|
|
1270
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
1271
|
-
error(): string;
|
|
1272
|
-
get(): import("./configDescriber").ValidationResult<{
|
|
1273
|
-
readonly from: string;
|
|
1274
|
-
readonly to: string;
|
|
1275
|
-
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
1276
|
-
or<U_10>(x: U_10): any;
|
|
1277
|
-
};
|
|
1278
|
-
};
|
|
1279
|
-
};
|
|
1280
|
-
};
|
|
1281
|
-
};
|
|
1282
|
-
};
|
|
1283
|
-
};
|
|
1284
|
-
};
|
|
1285
|
-
};
|
|
1286
|
-
};
|
|
1287
|
-
};
|
|
1288
|
-
printSchema: () => import("./configDescriber").JsonSchemaNode;
|
|
1289
|
-
$: import("./configDescriber").ConfigDescriberBaseConfig;
|
|
1290
|
-
onMerge(strategy: "replace" | "merge"): any;
|
|
1291
|
-
};
|
|
1292
564
|
export type ModuleConfiguration = ConfigTypeInfer<typeof ModuleConfigurationSchema>;
|
|
1293
565
|
export declare const CoreConfigurationSchema: {
|
|
1294
566
|
schema: Record<string, {
|
|
@@ -1298,24 +570,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1298
570
|
readonly TypePrefix: string;
|
|
1299
571
|
readonly LibraryPrefix: string;
|
|
1300
572
|
readonly OptionalPrefix: string;
|
|
1301
|
-
readonly transformOnSerialize: {
|
|
1302
|
-
readonly from: string;
|
|
1303
|
-
readonly to: string;
|
|
1304
|
-
}[];
|
|
1305
573
|
readonly rootComponents: string[];
|
|
1306
574
|
readonly standaloneComponents: string[];
|
|
1307
575
|
readonly parameterized: string[];
|
|
1308
576
|
readonly ignoreMaterialized: string[];
|
|
1309
|
-
readonly ignoreGenerics: string[];
|
|
1310
577
|
readonly builderClasses: string[];
|
|
1311
578
|
readonly forceMaterialized: string[];
|
|
1312
579
|
readonly forceCallback: Map<string, string[]>;
|
|
1313
580
|
readonly forceResource: string[];
|
|
1314
|
-
readonly forceContext: string[];
|
|
1315
|
-
readonly hooks: Map<string, Map<string, {
|
|
1316
|
-
readonly hookName: string;
|
|
1317
|
-
readonly replaceImplementation: boolean;
|
|
1318
|
-
}>>;
|
|
1319
581
|
readonly moduleName: string;
|
|
1320
582
|
readonly modules: Map<string, {
|
|
1321
583
|
readonly name: string;
|
|
@@ -1324,7 +586,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1324
586
|
readonly useFoldersLayout: boolean | undefined;
|
|
1325
587
|
readonly tsLikePackage: string | undefined;
|
|
1326
588
|
}>;
|
|
1327
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1328
589
|
readonly globalPackages: string[];
|
|
1329
590
|
}>;
|
|
1330
591
|
success(): boolean;
|
|
@@ -1333,24 +594,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1333
594
|
readonly TypePrefix: string;
|
|
1334
595
|
readonly LibraryPrefix: string;
|
|
1335
596
|
readonly OptionalPrefix: string;
|
|
1336
|
-
readonly transformOnSerialize: {
|
|
1337
|
-
readonly from: string;
|
|
1338
|
-
readonly to: string;
|
|
1339
|
-
}[];
|
|
1340
597
|
readonly rootComponents: string[];
|
|
1341
598
|
readonly standaloneComponents: string[];
|
|
1342
599
|
readonly parameterized: string[];
|
|
1343
600
|
readonly ignoreMaterialized: string[];
|
|
1344
|
-
readonly ignoreGenerics: string[];
|
|
1345
601
|
readonly builderClasses: string[];
|
|
1346
602
|
readonly forceMaterialized: string[];
|
|
1347
603
|
readonly forceCallback: Map<string, string[]>;
|
|
1348
604
|
readonly forceResource: string[];
|
|
1349
|
-
readonly forceContext: string[];
|
|
1350
|
-
readonly hooks: Map<string, Map<string, {
|
|
1351
|
-
readonly hookName: string;
|
|
1352
|
-
readonly replaceImplementation: boolean;
|
|
1353
|
-
}>>;
|
|
1354
605
|
readonly moduleName: string;
|
|
1355
606
|
readonly modules: Map<string, {
|
|
1356
607
|
readonly name: string;
|
|
@@ -1359,7 +610,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1359
610
|
readonly useFoldersLayout: boolean | undefined;
|
|
1360
611
|
readonly tsLikePackage: string | undefined;
|
|
1361
612
|
}>;
|
|
1362
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1363
613
|
readonly globalPackages: string[];
|
|
1364
614
|
};
|
|
1365
615
|
error(): string;
|
|
@@ -1368,24 +618,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1368
618
|
readonly TypePrefix: string;
|
|
1369
619
|
readonly LibraryPrefix: string;
|
|
1370
620
|
readonly OptionalPrefix: string;
|
|
1371
|
-
readonly transformOnSerialize: {
|
|
1372
|
-
readonly from: string;
|
|
1373
|
-
readonly to: string;
|
|
1374
|
-
}[];
|
|
1375
621
|
readonly rootComponents: string[];
|
|
1376
622
|
readonly standaloneComponents: string[];
|
|
1377
623
|
readonly parameterized: string[];
|
|
1378
624
|
readonly ignoreMaterialized: string[];
|
|
1379
|
-
readonly ignoreGenerics: string[];
|
|
1380
625
|
readonly builderClasses: string[];
|
|
1381
626
|
readonly forceMaterialized: string[];
|
|
1382
627
|
readonly forceCallback: Map<string, string[]>;
|
|
1383
628
|
readonly forceResource: string[];
|
|
1384
|
-
readonly forceContext: string[];
|
|
1385
|
-
readonly hooks: Map<string, Map<string, {
|
|
1386
|
-
readonly hookName: string;
|
|
1387
|
-
readonly replaceImplementation: boolean;
|
|
1388
|
-
}>>;
|
|
1389
629
|
readonly moduleName: string;
|
|
1390
630
|
readonly modules: Map<string, {
|
|
1391
631
|
readonly name: string;
|
|
@@ -1394,7 +634,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1394
634
|
readonly useFoldersLayout: boolean | undefined;
|
|
1395
635
|
readonly tsLikePackage: string | undefined;
|
|
1396
636
|
}>;
|
|
1397
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1398
637
|
readonly globalPackages: string[];
|
|
1399
638
|
}>;
|
|
1400
639
|
or<U>(x: U): {
|
|
@@ -1403,24 +642,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1403
642
|
readonly TypePrefix: string;
|
|
1404
643
|
readonly LibraryPrefix: string;
|
|
1405
644
|
readonly OptionalPrefix: string;
|
|
1406
|
-
readonly transformOnSerialize: {
|
|
1407
|
-
readonly from: string;
|
|
1408
|
-
readonly to: string;
|
|
1409
|
-
}[];
|
|
1410
645
|
readonly rootComponents: string[];
|
|
1411
646
|
readonly standaloneComponents: string[];
|
|
1412
647
|
readonly parameterized: string[];
|
|
1413
648
|
readonly ignoreMaterialized: string[];
|
|
1414
|
-
readonly ignoreGenerics: string[];
|
|
1415
649
|
readonly builderClasses: string[];
|
|
1416
650
|
readonly forceMaterialized: string[];
|
|
1417
651
|
readonly forceCallback: Map<string, string[]>;
|
|
1418
652
|
readonly forceResource: string[];
|
|
1419
|
-
readonly forceContext: string[];
|
|
1420
|
-
readonly hooks: Map<string, Map<string, {
|
|
1421
|
-
readonly hookName: string;
|
|
1422
|
-
readonly replaceImplementation: boolean;
|
|
1423
|
-
}>>;
|
|
1424
653
|
readonly moduleName: string;
|
|
1425
654
|
readonly modules: Map<string, {
|
|
1426
655
|
readonly name: string;
|
|
@@ -1429,7 +658,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1429
658
|
readonly useFoldersLayout: boolean | undefined;
|
|
1430
659
|
readonly tsLikePackage: string | undefined;
|
|
1431
660
|
}>;
|
|
1432
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1433
661
|
readonly globalPackages: string[];
|
|
1434
662
|
} | U>;
|
|
1435
663
|
success(): boolean;
|
|
@@ -1438,24 +666,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1438
666
|
readonly TypePrefix: string;
|
|
1439
667
|
readonly LibraryPrefix: string;
|
|
1440
668
|
readonly OptionalPrefix: string;
|
|
1441
|
-
readonly transformOnSerialize: {
|
|
1442
|
-
readonly from: string;
|
|
1443
|
-
readonly to: string;
|
|
1444
|
-
}[];
|
|
1445
669
|
readonly rootComponents: string[];
|
|
1446
670
|
readonly standaloneComponents: string[];
|
|
1447
671
|
readonly parameterized: string[];
|
|
1448
672
|
readonly ignoreMaterialized: string[];
|
|
1449
|
-
readonly ignoreGenerics: string[];
|
|
1450
673
|
readonly builderClasses: string[];
|
|
1451
674
|
readonly forceMaterialized: string[];
|
|
1452
675
|
readonly forceCallback: Map<string, string[]>;
|
|
1453
676
|
readonly forceResource: string[];
|
|
1454
|
-
readonly forceContext: string[];
|
|
1455
|
-
readonly hooks: Map<string, Map<string, {
|
|
1456
|
-
readonly hookName: string;
|
|
1457
|
-
readonly replaceImplementation: boolean;
|
|
1458
|
-
}>>;
|
|
1459
677
|
readonly moduleName: string;
|
|
1460
678
|
readonly modules: Map<string, {
|
|
1461
679
|
readonly name: string;
|
|
@@ -1464,7 +682,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1464
682
|
readonly useFoldersLayout: boolean | undefined;
|
|
1465
683
|
readonly tsLikePackage: string | undefined;
|
|
1466
684
|
}>;
|
|
1467
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1468
685
|
readonly globalPackages: string[];
|
|
1469
686
|
} | U;
|
|
1470
687
|
error(): string;
|
|
@@ -1473,24 +690,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1473
690
|
readonly TypePrefix: string;
|
|
1474
691
|
readonly LibraryPrefix: string;
|
|
1475
692
|
readonly OptionalPrefix: string;
|
|
1476
|
-
readonly transformOnSerialize: {
|
|
1477
|
-
readonly from: string;
|
|
1478
|
-
readonly to: string;
|
|
1479
|
-
}[];
|
|
1480
693
|
readonly rootComponents: string[];
|
|
1481
694
|
readonly standaloneComponents: string[];
|
|
1482
695
|
readonly parameterized: string[];
|
|
1483
696
|
readonly ignoreMaterialized: string[];
|
|
1484
|
-
readonly ignoreGenerics: string[];
|
|
1485
697
|
readonly builderClasses: string[];
|
|
1486
698
|
readonly forceMaterialized: string[];
|
|
1487
699
|
readonly forceCallback: Map<string, string[]>;
|
|
1488
700
|
readonly forceResource: string[];
|
|
1489
|
-
readonly forceContext: string[];
|
|
1490
|
-
readonly hooks: Map<string, Map<string, {
|
|
1491
|
-
readonly hookName: string;
|
|
1492
|
-
readonly replaceImplementation: boolean;
|
|
1493
|
-
}>>;
|
|
1494
701
|
readonly moduleName: string;
|
|
1495
702
|
readonly modules: Map<string, {
|
|
1496
703
|
readonly name: string;
|
|
@@ -1499,7 +706,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1499
706
|
readonly useFoldersLayout: boolean | undefined;
|
|
1500
707
|
readonly tsLikePackage: string | undefined;
|
|
1501
708
|
}>;
|
|
1502
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1503
709
|
readonly globalPackages: string[];
|
|
1504
710
|
} | U>;
|
|
1505
711
|
or<U_1>(x: U_1): {
|
|
@@ -1508,24 +714,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1508
714
|
readonly TypePrefix: string;
|
|
1509
715
|
readonly LibraryPrefix: string;
|
|
1510
716
|
readonly OptionalPrefix: string;
|
|
1511
|
-
readonly transformOnSerialize: {
|
|
1512
|
-
readonly from: string;
|
|
1513
|
-
readonly to: string;
|
|
1514
|
-
}[];
|
|
1515
717
|
readonly rootComponents: string[];
|
|
1516
718
|
readonly standaloneComponents: string[];
|
|
1517
719
|
readonly parameterized: string[];
|
|
1518
720
|
readonly ignoreMaterialized: string[];
|
|
1519
|
-
readonly ignoreGenerics: string[];
|
|
1520
721
|
readonly builderClasses: string[];
|
|
1521
722
|
readonly forceMaterialized: string[];
|
|
1522
723
|
readonly forceCallback: Map<string, string[]>;
|
|
1523
724
|
readonly forceResource: string[];
|
|
1524
|
-
readonly forceContext: string[];
|
|
1525
|
-
readonly hooks: Map<string, Map<string, {
|
|
1526
|
-
readonly hookName: string;
|
|
1527
|
-
readonly replaceImplementation: boolean;
|
|
1528
|
-
}>>;
|
|
1529
725
|
readonly moduleName: string;
|
|
1530
726
|
readonly modules: Map<string, {
|
|
1531
727
|
readonly name: string;
|
|
@@ -1534,7 +730,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1534
730
|
readonly useFoldersLayout: boolean | undefined;
|
|
1535
731
|
readonly tsLikePackage: string | undefined;
|
|
1536
732
|
}>;
|
|
1537
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1538
733
|
readonly globalPackages: string[];
|
|
1539
734
|
} | U | U_1>;
|
|
1540
735
|
success(): boolean;
|
|
@@ -1543,24 +738,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1543
738
|
readonly TypePrefix: string;
|
|
1544
739
|
readonly LibraryPrefix: string;
|
|
1545
740
|
readonly OptionalPrefix: string;
|
|
1546
|
-
readonly transformOnSerialize: {
|
|
1547
|
-
readonly from: string;
|
|
1548
|
-
readonly to: string;
|
|
1549
|
-
}[];
|
|
1550
741
|
readonly rootComponents: string[];
|
|
1551
742
|
readonly standaloneComponents: string[];
|
|
1552
743
|
readonly parameterized: string[];
|
|
1553
744
|
readonly ignoreMaterialized: string[];
|
|
1554
|
-
readonly ignoreGenerics: string[];
|
|
1555
745
|
readonly builderClasses: string[];
|
|
1556
746
|
readonly forceMaterialized: string[];
|
|
1557
747
|
readonly forceCallback: Map<string, string[]>;
|
|
1558
748
|
readonly forceResource: string[];
|
|
1559
|
-
readonly forceContext: string[];
|
|
1560
|
-
readonly hooks: Map<string, Map<string, {
|
|
1561
|
-
readonly hookName: string;
|
|
1562
|
-
readonly replaceImplementation: boolean;
|
|
1563
|
-
}>>;
|
|
1564
749
|
readonly moduleName: string;
|
|
1565
750
|
readonly modules: Map<string, {
|
|
1566
751
|
readonly name: string;
|
|
@@ -1569,7 +754,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1569
754
|
readonly useFoldersLayout: boolean | undefined;
|
|
1570
755
|
readonly tsLikePackage: string | undefined;
|
|
1571
756
|
}>;
|
|
1572
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1573
757
|
readonly globalPackages: string[];
|
|
1574
758
|
} | U | U_1;
|
|
1575
759
|
error(): string;
|
|
@@ -1578,24 +762,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1578
762
|
readonly TypePrefix: string;
|
|
1579
763
|
readonly LibraryPrefix: string;
|
|
1580
764
|
readonly OptionalPrefix: string;
|
|
1581
|
-
readonly transformOnSerialize: {
|
|
1582
|
-
readonly from: string;
|
|
1583
|
-
readonly to: string;
|
|
1584
|
-
}[];
|
|
1585
765
|
readonly rootComponents: string[];
|
|
1586
766
|
readonly standaloneComponents: string[];
|
|
1587
767
|
readonly parameterized: string[];
|
|
1588
768
|
readonly ignoreMaterialized: string[];
|
|
1589
|
-
readonly ignoreGenerics: string[];
|
|
1590
769
|
readonly builderClasses: string[];
|
|
1591
770
|
readonly forceMaterialized: string[];
|
|
1592
771
|
readonly forceCallback: Map<string, string[]>;
|
|
1593
772
|
readonly forceResource: string[];
|
|
1594
|
-
readonly forceContext: string[];
|
|
1595
|
-
readonly hooks: Map<string, Map<string, {
|
|
1596
|
-
readonly hookName: string;
|
|
1597
|
-
readonly replaceImplementation: boolean;
|
|
1598
|
-
}>>;
|
|
1599
773
|
readonly moduleName: string;
|
|
1600
774
|
readonly modules: Map<string, {
|
|
1601
775
|
readonly name: string;
|
|
@@ -1604,7 +778,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1604
778
|
readonly useFoldersLayout: boolean | undefined;
|
|
1605
779
|
readonly tsLikePackage: string | undefined;
|
|
1606
780
|
}>;
|
|
1607
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1608
781
|
readonly globalPackages: string[];
|
|
1609
782
|
} | U | U_1>;
|
|
1610
783
|
or<U_2>(x: U_2): {
|
|
@@ -1613,24 +786,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1613
786
|
readonly TypePrefix: string;
|
|
1614
787
|
readonly LibraryPrefix: string;
|
|
1615
788
|
readonly OptionalPrefix: string;
|
|
1616
|
-
readonly transformOnSerialize: {
|
|
1617
|
-
readonly from: string;
|
|
1618
|
-
readonly to: string;
|
|
1619
|
-
}[];
|
|
1620
789
|
readonly rootComponents: string[];
|
|
1621
790
|
readonly standaloneComponents: string[];
|
|
1622
791
|
readonly parameterized: string[];
|
|
1623
792
|
readonly ignoreMaterialized: string[];
|
|
1624
|
-
readonly ignoreGenerics: string[];
|
|
1625
793
|
readonly builderClasses: string[];
|
|
1626
794
|
readonly forceMaterialized: string[];
|
|
1627
795
|
readonly forceCallback: Map<string, string[]>;
|
|
1628
796
|
readonly forceResource: string[];
|
|
1629
|
-
readonly forceContext: string[];
|
|
1630
|
-
readonly hooks: Map<string, Map<string, {
|
|
1631
|
-
readonly hookName: string;
|
|
1632
|
-
readonly replaceImplementation: boolean;
|
|
1633
|
-
}>>;
|
|
1634
797
|
readonly moduleName: string;
|
|
1635
798
|
readonly modules: Map<string, {
|
|
1636
799
|
readonly name: string;
|
|
@@ -1639,7 +802,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1639
802
|
readonly useFoldersLayout: boolean | undefined;
|
|
1640
803
|
readonly tsLikePackage: string | undefined;
|
|
1641
804
|
}>;
|
|
1642
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1643
805
|
readonly globalPackages: string[];
|
|
1644
806
|
} | U | U_1 | U_2>;
|
|
1645
807
|
success(): boolean;
|
|
@@ -1648,24 +810,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1648
810
|
readonly TypePrefix: string;
|
|
1649
811
|
readonly LibraryPrefix: string;
|
|
1650
812
|
readonly OptionalPrefix: string;
|
|
1651
|
-
readonly transformOnSerialize: {
|
|
1652
|
-
readonly from: string;
|
|
1653
|
-
readonly to: string;
|
|
1654
|
-
}[];
|
|
1655
813
|
readonly rootComponents: string[];
|
|
1656
814
|
readonly standaloneComponents: string[];
|
|
1657
815
|
readonly parameterized: string[];
|
|
1658
816
|
readonly ignoreMaterialized: string[];
|
|
1659
|
-
readonly ignoreGenerics: string[];
|
|
1660
817
|
readonly builderClasses: string[];
|
|
1661
818
|
readonly forceMaterialized: string[];
|
|
1662
819
|
readonly forceCallback: Map<string, string[]>;
|
|
1663
820
|
readonly forceResource: string[];
|
|
1664
|
-
readonly forceContext: string[];
|
|
1665
|
-
readonly hooks: Map<string, Map<string, {
|
|
1666
|
-
readonly hookName: string;
|
|
1667
|
-
readonly replaceImplementation: boolean;
|
|
1668
|
-
}>>;
|
|
1669
821
|
readonly moduleName: string;
|
|
1670
822
|
readonly modules: Map<string, {
|
|
1671
823
|
readonly name: string;
|
|
@@ -1674,7 +826,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1674
826
|
readonly useFoldersLayout: boolean | undefined;
|
|
1675
827
|
readonly tsLikePackage: string | undefined;
|
|
1676
828
|
}>;
|
|
1677
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1678
829
|
readonly globalPackages: string[];
|
|
1679
830
|
} | U | U_1 | U_2;
|
|
1680
831
|
error(): string;
|
|
@@ -1683,24 +834,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1683
834
|
readonly TypePrefix: string;
|
|
1684
835
|
readonly LibraryPrefix: string;
|
|
1685
836
|
readonly OptionalPrefix: string;
|
|
1686
|
-
readonly transformOnSerialize: {
|
|
1687
|
-
readonly from: string;
|
|
1688
|
-
readonly to: string;
|
|
1689
|
-
}[];
|
|
1690
837
|
readonly rootComponents: string[];
|
|
1691
838
|
readonly standaloneComponents: string[];
|
|
1692
839
|
readonly parameterized: string[];
|
|
1693
840
|
readonly ignoreMaterialized: string[];
|
|
1694
|
-
readonly ignoreGenerics: string[];
|
|
1695
841
|
readonly builderClasses: string[];
|
|
1696
842
|
readonly forceMaterialized: string[];
|
|
1697
843
|
readonly forceCallback: Map<string, string[]>;
|
|
1698
844
|
readonly forceResource: string[];
|
|
1699
|
-
readonly forceContext: string[];
|
|
1700
|
-
readonly hooks: Map<string, Map<string, {
|
|
1701
|
-
readonly hookName: string;
|
|
1702
|
-
readonly replaceImplementation: boolean;
|
|
1703
|
-
}>>;
|
|
1704
845
|
readonly moduleName: string;
|
|
1705
846
|
readonly modules: Map<string, {
|
|
1706
847
|
readonly name: string;
|
|
@@ -1709,7 +850,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1709
850
|
readonly useFoldersLayout: boolean | undefined;
|
|
1710
851
|
readonly tsLikePackage: string | undefined;
|
|
1711
852
|
}>;
|
|
1712
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1713
853
|
readonly globalPackages: string[];
|
|
1714
854
|
} | U | U_1 | U_2>;
|
|
1715
855
|
or<U_3>(x: U_3): {
|
|
@@ -1718,24 +858,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1718
858
|
readonly TypePrefix: string;
|
|
1719
859
|
readonly LibraryPrefix: string;
|
|
1720
860
|
readonly OptionalPrefix: string;
|
|
1721
|
-
readonly transformOnSerialize: {
|
|
1722
|
-
readonly from: string;
|
|
1723
|
-
readonly to: string;
|
|
1724
|
-
}[];
|
|
1725
861
|
readonly rootComponents: string[];
|
|
1726
862
|
readonly standaloneComponents: string[];
|
|
1727
863
|
readonly parameterized: string[];
|
|
1728
864
|
readonly ignoreMaterialized: string[];
|
|
1729
|
-
readonly ignoreGenerics: string[];
|
|
1730
865
|
readonly builderClasses: string[];
|
|
1731
866
|
readonly forceMaterialized: string[];
|
|
1732
867
|
readonly forceCallback: Map<string, string[]>;
|
|
1733
868
|
readonly forceResource: string[];
|
|
1734
|
-
readonly forceContext: string[];
|
|
1735
|
-
readonly hooks: Map<string, Map<string, {
|
|
1736
|
-
readonly hookName: string;
|
|
1737
|
-
readonly replaceImplementation: boolean;
|
|
1738
|
-
}>>;
|
|
1739
869
|
readonly moduleName: string;
|
|
1740
870
|
readonly modules: Map<string, {
|
|
1741
871
|
readonly name: string;
|
|
@@ -1744,7 +874,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1744
874
|
readonly useFoldersLayout: boolean | undefined;
|
|
1745
875
|
readonly tsLikePackage: string | undefined;
|
|
1746
876
|
}>;
|
|
1747
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1748
877
|
readonly globalPackages: string[];
|
|
1749
878
|
} | U | U_1 | U_2 | U_3>;
|
|
1750
879
|
success(): boolean;
|
|
@@ -1753,24 +882,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1753
882
|
readonly TypePrefix: string;
|
|
1754
883
|
readonly LibraryPrefix: string;
|
|
1755
884
|
readonly OptionalPrefix: string;
|
|
1756
|
-
readonly transformOnSerialize: {
|
|
1757
|
-
readonly from: string;
|
|
1758
|
-
readonly to: string;
|
|
1759
|
-
}[];
|
|
1760
885
|
readonly rootComponents: string[];
|
|
1761
886
|
readonly standaloneComponents: string[];
|
|
1762
887
|
readonly parameterized: string[];
|
|
1763
888
|
readonly ignoreMaterialized: string[];
|
|
1764
|
-
readonly ignoreGenerics: string[];
|
|
1765
889
|
readonly builderClasses: string[];
|
|
1766
890
|
readonly forceMaterialized: string[];
|
|
1767
891
|
readonly forceCallback: Map<string, string[]>;
|
|
1768
892
|
readonly forceResource: string[];
|
|
1769
|
-
readonly forceContext: string[];
|
|
1770
|
-
readonly hooks: Map<string, Map<string, {
|
|
1771
|
-
readonly hookName: string;
|
|
1772
|
-
readonly replaceImplementation: boolean;
|
|
1773
|
-
}>>;
|
|
1774
893
|
readonly moduleName: string;
|
|
1775
894
|
readonly modules: Map<string, {
|
|
1776
895
|
readonly name: string;
|
|
@@ -1779,7 +898,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1779
898
|
readonly useFoldersLayout: boolean | undefined;
|
|
1780
899
|
readonly tsLikePackage: string | undefined;
|
|
1781
900
|
}>;
|
|
1782
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1783
901
|
readonly globalPackages: string[];
|
|
1784
902
|
} | U | U_1 | U_2 | U_3;
|
|
1785
903
|
error(): string;
|
|
@@ -1788,24 +906,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1788
906
|
readonly TypePrefix: string;
|
|
1789
907
|
readonly LibraryPrefix: string;
|
|
1790
908
|
readonly OptionalPrefix: string;
|
|
1791
|
-
readonly transformOnSerialize: {
|
|
1792
|
-
readonly from: string;
|
|
1793
|
-
readonly to: string;
|
|
1794
|
-
}[];
|
|
1795
909
|
readonly rootComponents: string[];
|
|
1796
910
|
readonly standaloneComponents: string[];
|
|
1797
911
|
readonly parameterized: string[];
|
|
1798
912
|
readonly ignoreMaterialized: string[];
|
|
1799
|
-
readonly ignoreGenerics: string[];
|
|
1800
913
|
readonly builderClasses: string[];
|
|
1801
914
|
readonly forceMaterialized: string[];
|
|
1802
915
|
readonly forceCallback: Map<string, string[]>;
|
|
1803
916
|
readonly forceResource: string[];
|
|
1804
|
-
readonly forceContext: string[];
|
|
1805
|
-
readonly hooks: Map<string, Map<string, {
|
|
1806
|
-
readonly hookName: string;
|
|
1807
|
-
readonly replaceImplementation: boolean;
|
|
1808
|
-
}>>;
|
|
1809
917
|
readonly moduleName: string;
|
|
1810
918
|
readonly modules: Map<string, {
|
|
1811
919
|
readonly name: string;
|
|
@@ -1814,7 +922,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1814
922
|
readonly useFoldersLayout: boolean | undefined;
|
|
1815
923
|
readonly tsLikePackage: string | undefined;
|
|
1816
924
|
}>;
|
|
1817
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1818
925
|
readonly globalPackages: string[];
|
|
1819
926
|
} | U | U_1 | U_2 | U_3>;
|
|
1820
927
|
or<U_4>(x: U_4): {
|
|
@@ -1823,24 +930,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1823
930
|
readonly TypePrefix: string;
|
|
1824
931
|
readonly LibraryPrefix: string;
|
|
1825
932
|
readonly OptionalPrefix: string;
|
|
1826
|
-
readonly transformOnSerialize: {
|
|
1827
|
-
readonly from: string;
|
|
1828
|
-
readonly to: string;
|
|
1829
|
-
}[];
|
|
1830
933
|
readonly rootComponents: string[];
|
|
1831
934
|
readonly standaloneComponents: string[];
|
|
1832
935
|
readonly parameterized: string[];
|
|
1833
936
|
readonly ignoreMaterialized: string[];
|
|
1834
|
-
readonly ignoreGenerics: string[];
|
|
1835
937
|
readonly builderClasses: string[];
|
|
1836
938
|
readonly forceMaterialized: string[];
|
|
1837
939
|
readonly forceCallback: Map<string, string[]>;
|
|
1838
940
|
readonly forceResource: string[];
|
|
1839
|
-
readonly forceContext: string[];
|
|
1840
|
-
readonly hooks: Map<string, Map<string, {
|
|
1841
|
-
readonly hookName: string;
|
|
1842
|
-
readonly replaceImplementation: boolean;
|
|
1843
|
-
}>>;
|
|
1844
941
|
readonly moduleName: string;
|
|
1845
942
|
readonly modules: Map<string, {
|
|
1846
943
|
readonly name: string;
|
|
@@ -1849,7 +946,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1849
946
|
readonly useFoldersLayout: boolean | undefined;
|
|
1850
947
|
readonly tsLikePackage: string | undefined;
|
|
1851
948
|
}>;
|
|
1852
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1853
949
|
readonly globalPackages: string[];
|
|
1854
950
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1855
951
|
success(): boolean;
|
|
@@ -1858,24 +954,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1858
954
|
readonly TypePrefix: string;
|
|
1859
955
|
readonly LibraryPrefix: string;
|
|
1860
956
|
readonly OptionalPrefix: string;
|
|
1861
|
-
readonly transformOnSerialize: {
|
|
1862
|
-
readonly from: string;
|
|
1863
|
-
readonly to: string;
|
|
1864
|
-
}[];
|
|
1865
957
|
readonly rootComponents: string[];
|
|
1866
958
|
readonly standaloneComponents: string[];
|
|
1867
959
|
readonly parameterized: string[];
|
|
1868
960
|
readonly ignoreMaterialized: string[];
|
|
1869
|
-
readonly ignoreGenerics: string[];
|
|
1870
961
|
readonly builderClasses: string[];
|
|
1871
962
|
readonly forceMaterialized: string[];
|
|
1872
963
|
readonly forceCallback: Map<string, string[]>;
|
|
1873
964
|
readonly forceResource: string[];
|
|
1874
|
-
readonly forceContext: string[];
|
|
1875
|
-
readonly hooks: Map<string, Map<string, {
|
|
1876
|
-
readonly hookName: string;
|
|
1877
|
-
readonly replaceImplementation: boolean;
|
|
1878
|
-
}>>;
|
|
1879
965
|
readonly moduleName: string;
|
|
1880
966
|
readonly modules: Map<string, {
|
|
1881
967
|
readonly name: string;
|
|
@@ -1884,7 +970,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1884
970
|
readonly useFoldersLayout: boolean | undefined;
|
|
1885
971
|
readonly tsLikePackage: string | undefined;
|
|
1886
972
|
}>;
|
|
1887
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1888
973
|
readonly globalPackages: string[];
|
|
1889
974
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
1890
975
|
error(): string;
|
|
@@ -1893,24 +978,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1893
978
|
readonly TypePrefix: string;
|
|
1894
979
|
readonly LibraryPrefix: string;
|
|
1895
980
|
readonly OptionalPrefix: string;
|
|
1896
|
-
readonly transformOnSerialize: {
|
|
1897
|
-
readonly from: string;
|
|
1898
|
-
readonly to: string;
|
|
1899
|
-
}[];
|
|
1900
981
|
readonly rootComponents: string[];
|
|
1901
982
|
readonly standaloneComponents: string[];
|
|
1902
983
|
readonly parameterized: string[];
|
|
1903
984
|
readonly ignoreMaterialized: string[];
|
|
1904
|
-
readonly ignoreGenerics: string[];
|
|
1905
985
|
readonly builderClasses: string[];
|
|
1906
986
|
readonly forceMaterialized: string[];
|
|
1907
987
|
readonly forceCallback: Map<string, string[]>;
|
|
1908
988
|
readonly forceResource: string[];
|
|
1909
|
-
readonly forceContext: string[];
|
|
1910
|
-
readonly hooks: Map<string, Map<string, {
|
|
1911
|
-
readonly hookName: string;
|
|
1912
|
-
readonly replaceImplementation: boolean;
|
|
1913
|
-
}>>;
|
|
1914
989
|
readonly moduleName: string;
|
|
1915
990
|
readonly modules: Map<string, {
|
|
1916
991
|
readonly name: string;
|
|
@@ -1919,7 +994,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1919
994
|
readonly useFoldersLayout: boolean | undefined;
|
|
1920
995
|
readonly tsLikePackage: string | undefined;
|
|
1921
996
|
}>;
|
|
1922
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1923
997
|
readonly globalPackages: string[];
|
|
1924
998
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
1925
999
|
or<U_5>(x: U_5): {
|
|
@@ -1928,24 +1002,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1928
1002
|
readonly TypePrefix: string;
|
|
1929
1003
|
readonly LibraryPrefix: string;
|
|
1930
1004
|
readonly OptionalPrefix: string;
|
|
1931
|
-
readonly transformOnSerialize: {
|
|
1932
|
-
readonly from: string;
|
|
1933
|
-
readonly to: string;
|
|
1934
|
-
}[];
|
|
1935
1005
|
readonly rootComponents: string[];
|
|
1936
1006
|
readonly standaloneComponents: string[];
|
|
1937
1007
|
readonly parameterized: string[];
|
|
1938
1008
|
readonly ignoreMaterialized: string[];
|
|
1939
|
-
readonly ignoreGenerics: string[];
|
|
1940
1009
|
readonly builderClasses: string[];
|
|
1941
1010
|
readonly forceMaterialized: string[];
|
|
1942
1011
|
readonly forceCallback: Map<string, string[]>;
|
|
1943
1012
|
readonly forceResource: string[];
|
|
1944
|
-
readonly forceContext: string[];
|
|
1945
|
-
readonly hooks: Map<string, Map<string, {
|
|
1946
|
-
readonly hookName: string;
|
|
1947
|
-
readonly replaceImplementation: boolean;
|
|
1948
|
-
}>>;
|
|
1949
1013
|
readonly moduleName: string;
|
|
1950
1014
|
readonly modules: Map<string, {
|
|
1951
1015
|
readonly name: string;
|
|
@@ -1954,7 +1018,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1954
1018
|
readonly useFoldersLayout: boolean | undefined;
|
|
1955
1019
|
readonly tsLikePackage: string | undefined;
|
|
1956
1020
|
}>;
|
|
1957
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1958
1021
|
readonly globalPackages: string[];
|
|
1959
1022
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
1960
1023
|
success(): boolean;
|
|
@@ -1963,24 +1026,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1963
1026
|
readonly TypePrefix: string;
|
|
1964
1027
|
readonly LibraryPrefix: string;
|
|
1965
1028
|
readonly OptionalPrefix: string;
|
|
1966
|
-
readonly transformOnSerialize: {
|
|
1967
|
-
readonly from: string;
|
|
1968
|
-
readonly to: string;
|
|
1969
|
-
}[];
|
|
1970
1029
|
readonly rootComponents: string[];
|
|
1971
1030
|
readonly standaloneComponents: string[];
|
|
1972
1031
|
readonly parameterized: string[];
|
|
1973
1032
|
readonly ignoreMaterialized: string[];
|
|
1974
|
-
readonly ignoreGenerics: string[];
|
|
1975
1033
|
readonly builderClasses: string[];
|
|
1976
1034
|
readonly forceMaterialized: string[];
|
|
1977
1035
|
readonly forceCallback: Map<string, string[]>;
|
|
1978
1036
|
readonly forceResource: string[];
|
|
1979
|
-
readonly forceContext: string[];
|
|
1980
|
-
readonly hooks: Map<string, Map<string, {
|
|
1981
|
-
readonly hookName: string;
|
|
1982
|
-
readonly replaceImplementation: boolean;
|
|
1983
|
-
}>>;
|
|
1984
1037
|
readonly moduleName: string;
|
|
1985
1038
|
readonly modules: Map<string, {
|
|
1986
1039
|
readonly name: string;
|
|
@@ -1989,7 +1042,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
1989
1042
|
readonly useFoldersLayout: boolean | undefined;
|
|
1990
1043
|
readonly tsLikePackage: string | undefined;
|
|
1991
1044
|
}>;
|
|
1992
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
1993
1045
|
readonly globalPackages: string[];
|
|
1994
1046
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
1995
1047
|
error(): string;
|
|
@@ -1998,24 +1050,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
1998
1050
|
readonly TypePrefix: string;
|
|
1999
1051
|
readonly LibraryPrefix: string;
|
|
2000
1052
|
readonly OptionalPrefix: string;
|
|
2001
|
-
readonly transformOnSerialize: {
|
|
2002
|
-
readonly from: string;
|
|
2003
|
-
readonly to: string;
|
|
2004
|
-
}[];
|
|
2005
1053
|
readonly rootComponents: string[];
|
|
2006
1054
|
readonly standaloneComponents: string[];
|
|
2007
1055
|
readonly parameterized: string[];
|
|
2008
1056
|
readonly ignoreMaterialized: string[];
|
|
2009
|
-
readonly ignoreGenerics: string[];
|
|
2010
1057
|
readonly builderClasses: string[];
|
|
2011
1058
|
readonly forceMaterialized: string[];
|
|
2012
1059
|
readonly forceCallback: Map<string, string[]>;
|
|
2013
1060
|
readonly forceResource: string[];
|
|
2014
|
-
readonly forceContext: string[];
|
|
2015
|
-
readonly hooks: Map<string, Map<string, {
|
|
2016
|
-
readonly hookName: string;
|
|
2017
|
-
readonly replaceImplementation: boolean;
|
|
2018
|
-
}>>;
|
|
2019
1061
|
readonly moduleName: string;
|
|
2020
1062
|
readonly modules: Map<string, {
|
|
2021
1063
|
readonly name: string;
|
|
@@ -2024,7 +1066,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2024
1066
|
readonly useFoldersLayout: boolean | undefined;
|
|
2025
1067
|
readonly tsLikePackage: string | undefined;
|
|
2026
1068
|
}>;
|
|
2027
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2028
1069
|
readonly globalPackages: string[];
|
|
2029
1070
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
2030
1071
|
or<U_6>(x: U_6): {
|
|
@@ -2033,24 +1074,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2033
1074
|
readonly TypePrefix: string;
|
|
2034
1075
|
readonly LibraryPrefix: string;
|
|
2035
1076
|
readonly OptionalPrefix: string;
|
|
2036
|
-
readonly transformOnSerialize: {
|
|
2037
|
-
readonly from: string;
|
|
2038
|
-
readonly to: string;
|
|
2039
|
-
}[];
|
|
2040
1077
|
readonly rootComponents: string[];
|
|
2041
1078
|
readonly standaloneComponents: string[];
|
|
2042
1079
|
readonly parameterized: string[];
|
|
2043
1080
|
readonly ignoreMaterialized: string[];
|
|
2044
|
-
readonly ignoreGenerics: string[];
|
|
2045
1081
|
readonly builderClasses: string[];
|
|
2046
1082
|
readonly forceMaterialized: string[];
|
|
2047
1083
|
readonly forceCallback: Map<string, string[]>;
|
|
2048
1084
|
readonly forceResource: string[];
|
|
2049
|
-
readonly forceContext: string[];
|
|
2050
|
-
readonly hooks: Map<string, Map<string, {
|
|
2051
|
-
readonly hookName: string;
|
|
2052
|
-
readonly replaceImplementation: boolean;
|
|
2053
|
-
}>>;
|
|
2054
1085
|
readonly moduleName: string;
|
|
2055
1086
|
readonly modules: Map<string, {
|
|
2056
1087
|
readonly name: string;
|
|
@@ -2059,7 +1090,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2059
1090
|
readonly useFoldersLayout: boolean | undefined;
|
|
2060
1091
|
readonly tsLikePackage: string | undefined;
|
|
2061
1092
|
}>;
|
|
2062
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2063
1093
|
readonly globalPackages: string[];
|
|
2064
1094
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
2065
1095
|
success(): boolean;
|
|
@@ -2068,24 +1098,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2068
1098
|
readonly TypePrefix: string;
|
|
2069
1099
|
readonly LibraryPrefix: string;
|
|
2070
1100
|
readonly OptionalPrefix: string;
|
|
2071
|
-
readonly transformOnSerialize: {
|
|
2072
|
-
readonly from: string;
|
|
2073
|
-
readonly to: string;
|
|
2074
|
-
}[];
|
|
2075
1101
|
readonly rootComponents: string[];
|
|
2076
1102
|
readonly standaloneComponents: string[];
|
|
2077
1103
|
readonly parameterized: string[];
|
|
2078
1104
|
readonly ignoreMaterialized: string[];
|
|
2079
|
-
readonly ignoreGenerics: string[];
|
|
2080
1105
|
readonly builderClasses: string[];
|
|
2081
1106
|
readonly forceMaterialized: string[];
|
|
2082
1107
|
readonly forceCallback: Map<string, string[]>;
|
|
2083
1108
|
readonly forceResource: string[];
|
|
2084
|
-
readonly forceContext: string[];
|
|
2085
|
-
readonly hooks: Map<string, Map<string, {
|
|
2086
|
-
readonly hookName: string;
|
|
2087
|
-
readonly replaceImplementation: boolean;
|
|
2088
|
-
}>>;
|
|
2089
1109
|
readonly moduleName: string;
|
|
2090
1110
|
readonly modules: Map<string, {
|
|
2091
1111
|
readonly name: string;
|
|
@@ -2094,7 +1114,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2094
1114
|
readonly useFoldersLayout: boolean | undefined;
|
|
2095
1115
|
readonly tsLikePackage: string | undefined;
|
|
2096
1116
|
}>;
|
|
2097
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2098
1117
|
readonly globalPackages: string[];
|
|
2099
1118
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
2100
1119
|
error(): string;
|
|
@@ -2103,24 +1122,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2103
1122
|
readonly TypePrefix: string;
|
|
2104
1123
|
readonly LibraryPrefix: string;
|
|
2105
1124
|
readonly OptionalPrefix: string;
|
|
2106
|
-
readonly transformOnSerialize: {
|
|
2107
|
-
readonly from: string;
|
|
2108
|
-
readonly to: string;
|
|
2109
|
-
}[];
|
|
2110
1125
|
readonly rootComponents: string[];
|
|
2111
1126
|
readonly standaloneComponents: string[];
|
|
2112
1127
|
readonly parameterized: string[];
|
|
2113
1128
|
readonly ignoreMaterialized: string[];
|
|
2114
|
-
readonly ignoreGenerics: string[];
|
|
2115
1129
|
readonly builderClasses: string[];
|
|
2116
1130
|
readonly forceMaterialized: string[];
|
|
2117
1131
|
readonly forceCallback: Map<string, string[]>;
|
|
2118
1132
|
readonly forceResource: string[];
|
|
2119
|
-
readonly forceContext: string[];
|
|
2120
|
-
readonly hooks: Map<string, Map<string, {
|
|
2121
|
-
readonly hookName: string;
|
|
2122
|
-
readonly replaceImplementation: boolean;
|
|
2123
|
-
}>>;
|
|
2124
1133
|
readonly moduleName: string;
|
|
2125
1134
|
readonly modules: Map<string, {
|
|
2126
1135
|
readonly name: string;
|
|
@@ -2129,7 +1138,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2129
1138
|
readonly useFoldersLayout: boolean | undefined;
|
|
2130
1139
|
readonly tsLikePackage: string | undefined;
|
|
2131
1140
|
}>;
|
|
2132
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2133
1141
|
readonly globalPackages: string[];
|
|
2134
1142
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
2135
1143
|
or<U_7>(x: U_7): {
|
|
@@ -2138,24 +1146,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2138
1146
|
readonly TypePrefix: string;
|
|
2139
1147
|
readonly LibraryPrefix: string;
|
|
2140
1148
|
readonly OptionalPrefix: string;
|
|
2141
|
-
readonly transformOnSerialize: {
|
|
2142
|
-
readonly from: string;
|
|
2143
|
-
readonly to: string;
|
|
2144
|
-
}[];
|
|
2145
1149
|
readonly rootComponents: string[];
|
|
2146
1150
|
readonly standaloneComponents: string[];
|
|
2147
1151
|
readonly parameterized: string[];
|
|
2148
1152
|
readonly ignoreMaterialized: string[];
|
|
2149
|
-
readonly ignoreGenerics: string[];
|
|
2150
1153
|
readonly builderClasses: string[];
|
|
2151
1154
|
readonly forceMaterialized: string[];
|
|
2152
1155
|
readonly forceCallback: Map<string, string[]>;
|
|
2153
1156
|
readonly forceResource: string[];
|
|
2154
|
-
readonly forceContext: string[];
|
|
2155
|
-
readonly hooks: Map<string, Map<string, {
|
|
2156
|
-
readonly hookName: string;
|
|
2157
|
-
readonly replaceImplementation: boolean;
|
|
2158
|
-
}>>;
|
|
2159
1157
|
readonly moduleName: string;
|
|
2160
1158
|
readonly modules: Map<string, {
|
|
2161
1159
|
readonly name: string;
|
|
@@ -2164,7 +1162,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2164
1162
|
readonly useFoldersLayout: boolean | undefined;
|
|
2165
1163
|
readonly tsLikePackage: string | undefined;
|
|
2166
1164
|
}>;
|
|
2167
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2168
1165
|
readonly globalPackages: string[];
|
|
2169
1166
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
2170
1167
|
success(): boolean;
|
|
@@ -2173,24 +1170,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2173
1170
|
readonly TypePrefix: string;
|
|
2174
1171
|
readonly LibraryPrefix: string;
|
|
2175
1172
|
readonly OptionalPrefix: string;
|
|
2176
|
-
readonly transformOnSerialize: {
|
|
2177
|
-
readonly from: string;
|
|
2178
|
-
readonly to: string;
|
|
2179
|
-
}[];
|
|
2180
1173
|
readonly rootComponents: string[];
|
|
2181
1174
|
readonly standaloneComponents: string[];
|
|
2182
1175
|
readonly parameterized: string[];
|
|
2183
1176
|
readonly ignoreMaterialized: string[];
|
|
2184
|
-
readonly ignoreGenerics: string[];
|
|
2185
1177
|
readonly builderClasses: string[];
|
|
2186
1178
|
readonly forceMaterialized: string[];
|
|
2187
1179
|
readonly forceCallback: Map<string, string[]>;
|
|
2188
1180
|
readonly forceResource: string[];
|
|
2189
|
-
readonly forceContext: string[];
|
|
2190
|
-
readonly hooks: Map<string, Map<string, {
|
|
2191
|
-
readonly hookName: string;
|
|
2192
|
-
readonly replaceImplementation: boolean;
|
|
2193
|
-
}>>;
|
|
2194
1181
|
readonly moduleName: string;
|
|
2195
1182
|
readonly modules: Map<string, {
|
|
2196
1183
|
readonly name: string;
|
|
@@ -2199,7 +1186,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2199
1186
|
readonly useFoldersLayout: boolean | undefined;
|
|
2200
1187
|
readonly tsLikePackage: string | undefined;
|
|
2201
1188
|
}>;
|
|
2202
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2203
1189
|
readonly globalPackages: string[];
|
|
2204
1190
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
2205
1191
|
error(): string;
|
|
@@ -2208,24 +1194,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2208
1194
|
readonly TypePrefix: string;
|
|
2209
1195
|
readonly LibraryPrefix: string;
|
|
2210
1196
|
readonly OptionalPrefix: string;
|
|
2211
|
-
readonly transformOnSerialize: {
|
|
2212
|
-
readonly from: string;
|
|
2213
|
-
readonly to: string;
|
|
2214
|
-
}[];
|
|
2215
1197
|
readonly rootComponents: string[];
|
|
2216
1198
|
readonly standaloneComponents: string[];
|
|
2217
1199
|
readonly parameterized: string[];
|
|
2218
1200
|
readonly ignoreMaterialized: string[];
|
|
2219
|
-
readonly ignoreGenerics: string[];
|
|
2220
1201
|
readonly builderClasses: string[];
|
|
2221
1202
|
readonly forceMaterialized: string[];
|
|
2222
1203
|
readonly forceCallback: Map<string, string[]>;
|
|
2223
1204
|
readonly forceResource: string[];
|
|
2224
|
-
readonly forceContext: string[];
|
|
2225
|
-
readonly hooks: Map<string, Map<string, {
|
|
2226
|
-
readonly hookName: string;
|
|
2227
|
-
readonly replaceImplementation: boolean;
|
|
2228
|
-
}>>;
|
|
2229
1205
|
readonly moduleName: string;
|
|
2230
1206
|
readonly modules: Map<string, {
|
|
2231
1207
|
readonly name: string;
|
|
@@ -2234,7 +1210,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2234
1210
|
readonly useFoldersLayout: boolean | undefined;
|
|
2235
1211
|
readonly tsLikePackage: string | undefined;
|
|
2236
1212
|
}>;
|
|
2237
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2238
1213
|
readonly globalPackages: string[];
|
|
2239
1214
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
2240
1215
|
or<U_8>(x: U_8): {
|
|
@@ -2243,24 +1218,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2243
1218
|
readonly TypePrefix: string;
|
|
2244
1219
|
readonly LibraryPrefix: string;
|
|
2245
1220
|
readonly OptionalPrefix: string;
|
|
2246
|
-
readonly transformOnSerialize: {
|
|
2247
|
-
readonly from: string;
|
|
2248
|
-
readonly to: string;
|
|
2249
|
-
}[];
|
|
2250
1221
|
readonly rootComponents: string[];
|
|
2251
1222
|
readonly standaloneComponents: string[];
|
|
2252
1223
|
readonly parameterized: string[];
|
|
2253
1224
|
readonly ignoreMaterialized: string[];
|
|
2254
|
-
readonly ignoreGenerics: string[];
|
|
2255
1225
|
readonly builderClasses: string[];
|
|
2256
1226
|
readonly forceMaterialized: string[];
|
|
2257
1227
|
readonly forceCallback: Map<string, string[]>;
|
|
2258
1228
|
readonly forceResource: string[];
|
|
2259
|
-
readonly forceContext: string[];
|
|
2260
|
-
readonly hooks: Map<string, Map<string, {
|
|
2261
|
-
readonly hookName: string;
|
|
2262
|
-
readonly replaceImplementation: boolean;
|
|
2263
|
-
}>>;
|
|
2264
1229
|
readonly moduleName: string;
|
|
2265
1230
|
readonly modules: Map<string, {
|
|
2266
1231
|
readonly name: string;
|
|
@@ -2269,7 +1234,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2269
1234
|
readonly useFoldersLayout: boolean | undefined;
|
|
2270
1235
|
readonly tsLikePackage: string | undefined;
|
|
2271
1236
|
}>;
|
|
2272
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2273
1237
|
readonly globalPackages: string[];
|
|
2274
1238
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
2275
1239
|
success(): boolean;
|
|
@@ -2278,24 +1242,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2278
1242
|
readonly TypePrefix: string;
|
|
2279
1243
|
readonly LibraryPrefix: string;
|
|
2280
1244
|
readonly OptionalPrefix: string;
|
|
2281
|
-
readonly transformOnSerialize: {
|
|
2282
|
-
readonly from: string;
|
|
2283
|
-
readonly to: string;
|
|
2284
|
-
}[];
|
|
2285
1245
|
readonly rootComponents: string[];
|
|
2286
1246
|
readonly standaloneComponents: string[];
|
|
2287
1247
|
readonly parameterized: string[];
|
|
2288
1248
|
readonly ignoreMaterialized: string[];
|
|
2289
|
-
readonly ignoreGenerics: string[];
|
|
2290
1249
|
readonly builderClasses: string[];
|
|
2291
1250
|
readonly forceMaterialized: string[];
|
|
2292
1251
|
readonly forceCallback: Map<string, string[]>;
|
|
2293
1252
|
readonly forceResource: string[];
|
|
2294
|
-
readonly forceContext: string[];
|
|
2295
|
-
readonly hooks: Map<string, Map<string, {
|
|
2296
|
-
readonly hookName: string;
|
|
2297
|
-
readonly replaceImplementation: boolean;
|
|
2298
|
-
}>>;
|
|
2299
1253
|
readonly moduleName: string;
|
|
2300
1254
|
readonly modules: Map<string, {
|
|
2301
1255
|
readonly name: string;
|
|
@@ -2304,7 +1258,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2304
1258
|
readonly useFoldersLayout: boolean | undefined;
|
|
2305
1259
|
readonly tsLikePackage: string | undefined;
|
|
2306
1260
|
}>;
|
|
2307
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2308
1261
|
readonly globalPackages: string[];
|
|
2309
1262
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
2310
1263
|
error(): string;
|
|
@@ -2313,24 +1266,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2313
1266
|
readonly TypePrefix: string;
|
|
2314
1267
|
readonly LibraryPrefix: string;
|
|
2315
1268
|
readonly OptionalPrefix: string;
|
|
2316
|
-
readonly transformOnSerialize: {
|
|
2317
|
-
readonly from: string;
|
|
2318
|
-
readonly to: string;
|
|
2319
|
-
}[];
|
|
2320
1269
|
readonly rootComponents: string[];
|
|
2321
1270
|
readonly standaloneComponents: string[];
|
|
2322
1271
|
readonly parameterized: string[];
|
|
2323
1272
|
readonly ignoreMaterialized: string[];
|
|
2324
|
-
readonly ignoreGenerics: string[];
|
|
2325
1273
|
readonly builderClasses: string[];
|
|
2326
1274
|
readonly forceMaterialized: string[];
|
|
2327
1275
|
readonly forceCallback: Map<string, string[]>;
|
|
2328
1276
|
readonly forceResource: string[];
|
|
2329
|
-
readonly forceContext: string[];
|
|
2330
|
-
readonly hooks: Map<string, Map<string, {
|
|
2331
|
-
readonly hookName: string;
|
|
2332
|
-
readonly replaceImplementation: boolean;
|
|
2333
|
-
}>>;
|
|
2334
1277
|
readonly moduleName: string;
|
|
2335
1278
|
readonly modules: Map<string, {
|
|
2336
1279
|
readonly name: string;
|
|
@@ -2339,7 +1282,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2339
1282
|
readonly useFoldersLayout: boolean | undefined;
|
|
2340
1283
|
readonly tsLikePackage: string | undefined;
|
|
2341
1284
|
}>;
|
|
2342
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2343
1285
|
readonly globalPackages: string[];
|
|
2344
1286
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
2345
1287
|
or<U_9>(x: U_9): {
|
|
@@ -2348,24 +1290,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2348
1290
|
readonly TypePrefix: string;
|
|
2349
1291
|
readonly LibraryPrefix: string;
|
|
2350
1292
|
readonly OptionalPrefix: string;
|
|
2351
|
-
readonly transformOnSerialize: {
|
|
2352
|
-
readonly from: string;
|
|
2353
|
-
readonly to: string;
|
|
2354
|
-
}[];
|
|
2355
1293
|
readonly rootComponents: string[];
|
|
2356
1294
|
readonly standaloneComponents: string[];
|
|
2357
1295
|
readonly parameterized: string[];
|
|
2358
1296
|
readonly ignoreMaterialized: string[];
|
|
2359
|
-
readonly ignoreGenerics: string[];
|
|
2360
1297
|
readonly builderClasses: string[];
|
|
2361
1298
|
readonly forceMaterialized: string[];
|
|
2362
1299
|
readonly forceCallback: Map<string, string[]>;
|
|
2363
1300
|
readonly forceResource: string[];
|
|
2364
|
-
readonly forceContext: string[];
|
|
2365
|
-
readonly hooks: Map<string, Map<string, {
|
|
2366
|
-
readonly hookName: string;
|
|
2367
|
-
readonly replaceImplementation: boolean;
|
|
2368
|
-
}>>;
|
|
2369
1301
|
readonly moduleName: string;
|
|
2370
1302
|
readonly modules: Map<string, {
|
|
2371
1303
|
readonly name: string;
|
|
@@ -2374,7 +1306,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2374
1306
|
readonly useFoldersLayout: boolean | undefined;
|
|
2375
1307
|
readonly tsLikePackage: string | undefined;
|
|
2376
1308
|
}>;
|
|
2377
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2378
1309
|
readonly globalPackages: string[];
|
|
2379
1310
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
2380
1311
|
success(): boolean;
|
|
@@ -2383,24 +1314,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2383
1314
|
readonly TypePrefix: string;
|
|
2384
1315
|
readonly LibraryPrefix: string;
|
|
2385
1316
|
readonly OptionalPrefix: string;
|
|
2386
|
-
readonly transformOnSerialize: {
|
|
2387
|
-
readonly from: string;
|
|
2388
|
-
readonly to: string;
|
|
2389
|
-
}[];
|
|
2390
1317
|
readonly rootComponents: string[];
|
|
2391
1318
|
readonly standaloneComponents: string[];
|
|
2392
1319
|
readonly parameterized: string[];
|
|
2393
1320
|
readonly ignoreMaterialized: string[];
|
|
2394
|
-
readonly ignoreGenerics: string[];
|
|
2395
1321
|
readonly builderClasses: string[];
|
|
2396
1322
|
readonly forceMaterialized: string[];
|
|
2397
1323
|
readonly forceCallback: Map<string, string[]>;
|
|
2398
1324
|
readonly forceResource: string[];
|
|
2399
|
-
readonly forceContext: string[];
|
|
2400
|
-
readonly hooks: Map<string, Map<string, {
|
|
2401
|
-
readonly hookName: string;
|
|
2402
|
-
readonly replaceImplementation: boolean;
|
|
2403
|
-
}>>;
|
|
2404
1325
|
readonly moduleName: string;
|
|
2405
1326
|
readonly modules: Map<string, {
|
|
2406
1327
|
readonly name: string;
|
|
@@ -2409,7 +1330,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2409
1330
|
readonly useFoldersLayout: boolean | undefined;
|
|
2410
1331
|
readonly tsLikePackage: string | undefined;
|
|
2411
1332
|
}>;
|
|
2412
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2413
1333
|
readonly globalPackages: string[];
|
|
2414
1334
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
2415
1335
|
error(): string;
|
|
@@ -2418,24 +1338,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2418
1338
|
readonly TypePrefix: string;
|
|
2419
1339
|
readonly LibraryPrefix: string;
|
|
2420
1340
|
readonly OptionalPrefix: string;
|
|
2421
|
-
readonly transformOnSerialize: {
|
|
2422
|
-
readonly from: string;
|
|
2423
|
-
readonly to: string;
|
|
2424
|
-
}[];
|
|
2425
1341
|
readonly rootComponents: string[];
|
|
2426
1342
|
readonly standaloneComponents: string[];
|
|
2427
1343
|
readonly parameterized: string[];
|
|
2428
1344
|
readonly ignoreMaterialized: string[];
|
|
2429
|
-
readonly ignoreGenerics: string[];
|
|
2430
1345
|
readonly builderClasses: string[];
|
|
2431
1346
|
readonly forceMaterialized: string[];
|
|
2432
1347
|
readonly forceCallback: Map<string, string[]>;
|
|
2433
1348
|
readonly forceResource: string[];
|
|
2434
|
-
readonly forceContext: string[];
|
|
2435
|
-
readonly hooks: Map<string, Map<string, {
|
|
2436
|
-
readonly hookName: string;
|
|
2437
|
-
readonly replaceImplementation: boolean;
|
|
2438
|
-
}>>;
|
|
2439
1349
|
readonly moduleName: string;
|
|
2440
1350
|
readonly modules: Map<string, {
|
|
2441
1351
|
readonly name: string;
|
|
@@ -2444,7 +1354,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2444
1354
|
readonly useFoldersLayout: boolean | undefined;
|
|
2445
1355
|
readonly tsLikePackage: string | undefined;
|
|
2446
1356
|
}>;
|
|
2447
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2448
1357
|
readonly globalPackages: string[];
|
|
2449
1358
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
2450
1359
|
or<U_10>(x: U_10): any;
|
|
@@ -2469,24 +1378,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2469
1378
|
readonly TypePrefix: string;
|
|
2470
1379
|
readonly LibraryPrefix: string;
|
|
2471
1380
|
readonly OptionalPrefix: string;
|
|
2472
|
-
readonly transformOnSerialize: {
|
|
2473
|
-
readonly from: string;
|
|
2474
|
-
readonly to: string;
|
|
2475
|
-
}[];
|
|
2476
1381
|
readonly rootComponents: string[];
|
|
2477
1382
|
readonly standaloneComponents: string[];
|
|
2478
1383
|
readonly parameterized: string[];
|
|
2479
1384
|
readonly ignoreMaterialized: string[];
|
|
2480
|
-
readonly ignoreGenerics: string[];
|
|
2481
1385
|
readonly builderClasses: string[];
|
|
2482
1386
|
readonly forceMaterialized: string[];
|
|
2483
1387
|
readonly forceCallback: Map<string, string[]>;
|
|
2484
1388
|
readonly forceResource: string[];
|
|
2485
|
-
readonly forceContext: string[];
|
|
2486
|
-
readonly hooks: Map<string, Map<string, {
|
|
2487
|
-
readonly hookName: string;
|
|
2488
|
-
readonly replaceImplementation: boolean;
|
|
2489
|
-
}>>;
|
|
2490
1389
|
readonly moduleName: string;
|
|
2491
1390
|
readonly modules: Map<string, {
|
|
2492
1391
|
readonly name: string;
|
|
@@ -2495,7 +1394,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2495
1394
|
readonly useFoldersLayout: boolean | undefined;
|
|
2496
1395
|
readonly tsLikePackage: string | undefined;
|
|
2497
1396
|
}>;
|
|
2498
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2499
1397
|
readonly globalPackages: string[];
|
|
2500
1398
|
}>;
|
|
2501
1399
|
success(): boolean;
|
|
@@ -2504,24 +1402,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2504
1402
|
readonly TypePrefix: string;
|
|
2505
1403
|
readonly LibraryPrefix: string;
|
|
2506
1404
|
readonly OptionalPrefix: string;
|
|
2507
|
-
readonly transformOnSerialize: {
|
|
2508
|
-
readonly from: string;
|
|
2509
|
-
readonly to: string;
|
|
2510
|
-
}[];
|
|
2511
1405
|
readonly rootComponents: string[];
|
|
2512
1406
|
readonly standaloneComponents: string[];
|
|
2513
1407
|
readonly parameterized: string[];
|
|
2514
1408
|
readonly ignoreMaterialized: string[];
|
|
2515
|
-
readonly ignoreGenerics: string[];
|
|
2516
1409
|
readonly builderClasses: string[];
|
|
2517
1410
|
readonly forceMaterialized: string[];
|
|
2518
1411
|
readonly forceCallback: Map<string, string[]>;
|
|
2519
1412
|
readonly forceResource: string[];
|
|
2520
|
-
readonly forceContext: string[];
|
|
2521
|
-
readonly hooks: Map<string, Map<string, {
|
|
2522
|
-
readonly hookName: string;
|
|
2523
|
-
readonly replaceImplementation: boolean;
|
|
2524
|
-
}>>;
|
|
2525
1413
|
readonly moduleName: string;
|
|
2526
1414
|
readonly modules: Map<string, {
|
|
2527
1415
|
readonly name: string;
|
|
@@ -2530,7 +1418,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2530
1418
|
readonly useFoldersLayout: boolean | undefined;
|
|
2531
1419
|
readonly tsLikePackage: string | undefined;
|
|
2532
1420
|
}>;
|
|
2533
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2534
1421
|
readonly globalPackages: string[];
|
|
2535
1422
|
};
|
|
2536
1423
|
error(): string;
|
|
@@ -2539,24 +1426,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2539
1426
|
readonly TypePrefix: string;
|
|
2540
1427
|
readonly LibraryPrefix: string;
|
|
2541
1428
|
readonly OptionalPrefix: string;
|
|
2542
|
-
readonly transformOnSerialize: {
|
|
2543
|
-
readonly from: string;
|
|
2544
|
-
readonly to: string;
|
|
2545
|
-
}[];
|
|
2546
1429
|
readonly rootComponents: string[];
|
|
2547
1430
|
readonly standaloneComponents: string[];
|
|
2548
1431
|
readonly parameterized: string[];
|
|
2549
1432
|
readonly ignoreMaterialized: string[];
|
|
2550
|
-
readonly ignoreGenerics: string[];
|
|
2551
1433
|
readonly builderClasses: string[];
|
|
2552
1434
|
readonly forceMaterialized: string[];
|
|
2553
1435
|
readonly forceCallback: Map<string, string[]>;
|
|
2554
1436
|
readonly forceResource: string[];
|
|
2555
|
-
readonly forceContext: string[];
|
|
2556
|
-
readonly hooks: Map<string, Map<string, {
|
|
2557
|
-
readonly hookName: string;
|
|
2558
|
-
readonly replaceImplementation: boolean;
|
|
2559
|
-
}>>;
|
|
2560
1437
|
readonly moduleName: string;
|
|
2561
1438
|
readonly modules: Map<string, {
|
|
2562
1439
|
readonly name: string;
|
|
@@ -2565,7 +1442,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2565
1442
|
readonly useFoldersLayout: boolean | undefined;
|
|
2566
1443
|
readonly tsLikePackage: string | undefined;
|
|
2567
1444
|
}>;
|
|
2568
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2569
1445
|
readonly globalPackages: string[];
|
|
2570
1446
|
}>;
|
|
2571
1447
|
or<U>(x: U): {
|
|
@@ -2574,24 +1450,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2574
1450
|
readonly TypePrefix: string;
|
|
2575
1451
|
readonly LibraryPrefix: string;
|
|
2576
1452
|
readonly OptionalPrefix: string;
|
|
2577
|
-
readonly transformOnSerialize: {
|
|
2578
|
-
readonly from: string;
|
|
2579
|
-
readonly to: string;
|
|
2580
|
-
}[];
|
|
2581
1453
|
readonly rootComponents: string[];
|
|
2582
1454
|
readonly standaloneComponents: string[];
|
|
2583
1455
|
readonly parameterized: string[];
|
|
2584
1456
|
readonly ignoreMaterialized: string[];
|
|
2585
|
-
readonly ignoreGenerics: string[];
|
|
2586
1457
|
readonly builderClasses: string[];
|
|
2587
1458
|
readonly forceMaterialized: string[];
|
|
2588
1459
|
readonly forceCallback: Map<string, string[]>;
|
|
2589
1460
|
readonly forceResource: string[];
|
|
2590
|
-
readonly forceContext: string[];
|
|
2591
|
-
readonly hooks: Map<string, Map<string, {
|
|
2592
|
-
readonly hookName: string;
|
|
2593
|
-
readonly replaceImplementation: boolean;
|
|
2594
|
-
}>>;
|
|
2595
1461
|
readonly moduleName: string;
|
|
2596
1462
|
readonly modules: Map<string, {
|
|
2597
1463
|
readonly name: string;
|
|
@@ -2600,7 +1466,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2600
1466
|
readonly useFoldersLayout: boolean | undefined;
|
|
2601
1467
|
readonly tsLikePackage: string | undefined;
|
|
2602
1468
|
}>;
|
|
2603
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2604
1469
|
readonly globalPackages: string[];
|
|
2605
1470
|
} | U>;
|
|
2606
1471
|
success(): boolean;
|
|
@@ -2609,24 +1474,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2609
1474
|
readonly TypePrefix: string;
|
|
2610
1475
|
readonly LibraryPrefix: string;
|
|
2611
1476
|
readonly OptionalPrefix: string;
|
|
2612
|
-
readonly transformOnSerialize: {
|
|
2613
|
-
readonly from: string;
|
|
2614
|
-
readonly to: string;
|
|
2615
|
-
}[];
|
|
2616
1477
|
readonly rootComponents: string[];
|
|
2617
1478
|
readonly standaloneComponents: string[];
|
|
2618
1479
|
readonly parameterized: string[];
|
|
2619
1480
|
readonly ignoreMaterialized: string[];
|
|
2620
|
-
readonly ignoreGenerics: string[];
|
|
2621
1481
|
readonly builderClasses: string[];
|
|
2622
1482
|
readonly forceMaterialized: string[];
|
|
2623
1483
|
readonly forceCallback: Map<string, string[]>;
|
|
2624
1484
|
readonly forceResource: string[];
|
|
2625
|
-
readonly forceContext: string[];
|
|
2626
|
-
readonly hooks: Map<string, Map<string, {
|
|
2627
|
-
readonly hookName: string;
|
|
2628
|
-
readonly replaceImplementation: boolean;
|
|
2629
|
-
}>>;
|
|
2630
1485
|
readonly moduleName: string;
|
|
2631
1486
|
readonly modules: Map<string, {
|
|
2632
1487
|
readonly name: string;
|
|
@@ -2635,7 +1490,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2635
1490
|
readonly useFoldersLayout: boolean | undefined;
|
|
2636
1491
|
readonly tsLikePackage: string | undefined;
|
|
2637
1492
|
}>;
|
|
2638
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2639
1493
|
readonly globalPackages: string[];
|
|
2640
1494
|
} | U;
|
|
2641
1495
|
error(): string;
|
|
@@ -2644,24 +1498,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2644
1498
|
readonly TypePrefix: string;
|
|
2645
1499
|
readonly LibraryPrefix: string;
|
|
2646
1500
|
readonly OptionalPrefix: string;
|
|
2647
|
-
readonly transformOnSerialize: {
|
|
2648
|
-
readonly from: string;
|
|
2649
|
-
readonly to: string;
|
|
2650
|
-
}[];
|
|
2651
1501
|
readonly rootComponents: string[];
|
|
2652
1502
|
readonly standaloneComponents: string[];
|
|
2653
1503
|
readonly parameterized: string[];
|
|
2654
1504
|
readonly ignoreMaterialized: string[];
|
|
2655
|
-
readonly ignoreGenerics: string[];
|
|
2656
1505
|
readonly builderClasses: string[];
|
|
2657
1506
|
readonly forceMaterialized: string[];
|
|
2658
1507
|
readonly forceCallback: Map<string, string[]>;
|
|
2659
1508
|
readonly forceResource: string[];
|
|
2660
|
-
readonly forceContext: string[];
|
|
2661
|
-
readonly hooks: Map<string, Map<string, {
|
|
2662
|
-
readonly hookName: string;
|
|
2663
|
-
readonly replaceImplementation: boolean;
|
|
2664
|
-
}>>;
|
|
2665
1509
|
readonly moduleName: string;
|
|
2666
1510
|
readonly modules: Map<string, {
|
|
2667
1511
|
readonly name: string;
|
|
@@ -2670,7 +1514,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2670
1514
|
readonly useFoldersLayout: boolean | undefined;
|
|
2671
1515
|
readonly tsLikePackage: string | undefined;
|
|
2672
1516
|
}>;
|
|
2673
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2674
1517
|
readonly globalPackages: string[];
|
|
2675
1518
|
} | U>;
|
|
2676
1519
|
or<U_1>(x: U_1): {
|
|
@@ -2679,24 +1522,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2679
1522
|
readonly TypePrefix: string;
|
|
2680
1523
|
readonly LibraryPrefix: string;
|
|
2681
1524
|
readonly OptionalPrefix: string;
|
|
2682
|
-
readonly transformOnSerialize: {
|
|
2683
|
-
readonly from: string;
|
|
2684
|
-
readonly to: string;
|
|
2685
|
-
}[];
|
|
2686
1525
|
readonly rootComponents: string[];
|
|
2687
1526
|
readonly standaloneComponents: string[];
|
|
2688
1527
|
readonly parameterized: string[];
|
|
2689
1528
|
readonly ignoreMaterialized: string[];
|
|
2690
|
-
readonly ignoreGenerics: string[];
|
|
2691
1529
|
readonly builderClasses: string[];
|
|
2692
1530
|
readonly forceMaterialized: string[];
|
|
2693
1531
|
readonly forceCallback: Map<string, string[]>;
|
|
2694
1532
|
readonly forceResource: string[];
|
|
2695
|
-
readonly forceContext: string[];
|
|
2696
|
-
readonly hooks: Map<string, Map<string, {
|
|
2697
|
-
readonly hookName: string;
|
|
2698
|
-
readonly replaceImplementation: boolean;
|
|
2699
|
-
}>>;
|
|
2700
1533
|
readonly moduleName: string;
|
|
2701
1534
|
readonly modules: Map<string, {
|
|
2702
1535
|
readonly name: string;
|
|
@@ -2705,7 +1538,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2705
1538
|
readonly useFoldersLayout: boolean | undefined;
|
|
2706
1539
|
readonly tsLikePackage: string | undefined;
|
|
2707
1540
|
}>;
|
|
2708
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2709
1541
|
readonly globalPackages: string[];
|
|
2710
1542
|
} | U | U_1>;
|
|
2711
1543
|
success(): boolean;
|
|
@@ -2714,24 +1546,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2714
1546
|
readonly TypePrefix: string;
|
|
2715
1547
|
readonly LibraryPrefix: string;
|
|
2716
1548
|
readonly OptionalPrefix: string;
|
|
2717
|
-
readonly transformOnSerialize: {
|
|
2718
|
-
readonly from: string;
|
|
2719
|
-
readonly to: string;
|
|
2720
|
-
}[];
|
|
2721
1549
|
readonly rootComponents: string[];
|
|
2722
1550
|
readonly standaloneComponents: string[];
|
|
2723
1551
|
readonly parameterized: string[];
|
|
2724
1552
|
readonly ignoreMaterialized: string[];
|
|
2725
|
-
readonly ignoreGenerics: string[];
|
|
2726
1553
|
readonly builderClasses: string[];
|
|
2727
1554
|
readonly forceMaterialized: string[];
|
|
2728
1555
|
readonly forceCallback: Map<string, string[]>;
|
|
2729
1556
|
readonly forceResource: string[];
|
|
2730
|
-
readonly forceContext: string[];
|
|
2731
|
-
readonly hooks: Map<string, Map<string, {
|
|
2732
|
-
readonly hookName: string;
|
|
2733
|
-
readonly replaceImplementation: boolean;
|
|
2734
|
-
}>>;
|
|
2735
1557
|
readonly moduleName: string;
|
|
2736
1558
|
readonly modules: Map<string, {
|
|
2737
1559
|
readonly name: string;
|
|
@@ -2740,7 +1562,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2740
1562
|
readonly useFoldersLayout: boolean | undefined;
|
|
2741
1563
|
readonly tsLikePackage: string | undefined;
|
|
2742
1564
|
}>;
|
|
2743
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2744
1565
|
readonly globalPackages: string[];
|
|
2745
1566
|
} | U | U_1;
|
|
2746
1567
|
error(): string;
|
|
@@ -2749,24 +1570,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2749
1570
|
readonly TypePrefix: string;
|
|
2750
1571
|
readonly LibraryPrefix: string;
|
|
2751
1572
|
readonly OptionalPrefix: string;
|
|
2752
|
-
readonly transformOnSerialize: {
|
|
2753
|
-
readonly from: string;
|
|
2754
|
-
readonly to: string;
|
|
2755
|
-
}[];
|
|
2756
1573
|
readonly rootComponents: string[];
|
|
2757
1574
|
readonly standaloneComponents: string[];
|
|
2758
1575
|
readonly parameterized: string[];
|
|
2759
1576
|
readonly ignoreMaterialized: string[];
|
|
2760
|
-
readonly ignoreGenerics: string[];
|
|
2761
1577
|
readonly builderClasses: string[];
|
|
2762
1578
|
readonly forceMaterialized: string[];
|
|
2763
1579
|
readonly forceCallback: Map<string, string[]>;
|
|
2764
1580
|
readonly forceResource: string[];
|
|
2765
|
-
readonly forceContext: string[];
|
|
2766
|
-
readonly hooks: Map<string, Map<string, {
|
|
2767
|
-
readonly hookName: string;
|
|
2768
|
-
readonly replaceImplementation: boolean;
|
|
2769
|
-
}>>;
|
|
2770
1581
|
readonly moduleName: string;
|
|
2771
1582
|
readonly modules: Map<string, {
|
|
2772
1583
|
readonly name: string;
|
|
@@ -2775,7 +1586,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2775
1586
|
readonly useFoldersLayout: boolean | undefined;
|
|
2776
1587
|
readonly tsLikePackage: string | undefined;
|
|
2777
1588
|
}>;
|
|
2778
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2779
1589
|
readonly globalPackages: string[];
|
|
2780
1590
|
} | U | U_1>;
|
|
2781
1591
|
or<U_2>(x: U_2): {
|
|
@@ -2784,24 +1594,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2784
1594
|
readonly TypePrefix: string;
|
|
2785
1595
|
readonly LibraryPrefix: string;
|
|
2786
1596
|
readonly OptionalPrefix: string;
|
|
2787
|
-
readonly transformOnSerialize: {
|
|
2788
|
-
readonly from: string;
|
|
2789
|
-
readonly to: string;
|
|
2790
|
-
}[];
|
|
2791
1597
|
readonly rootComponents: string[];
|
|
2792
1598
|
readonly standaloneComponents: string[];
|
|
2793
1599
|
readonly parameterized: string[];
|
|
2794
1600
|
readonly ignoreMaterialized: string[];
|
|
2795
|
-
readonly ignoreGenerics: string[];
|
|
2796
1601
|
readonly builderClasses: string[];
|
|
2797
1602
|
readonly forceMaterialized: string[];
|
|
2798
1603
|
readonly forceCallback: Map<string, string[]>;
|
|
2799
1604
|
readonly forceResource: string[];
|
|
2800
|
-
readonly forceContext: string[];
|
|
2801
|
-
readonly hooks: Map<string, Map<string, {
|
|
2802
|
-
readonly hookName: string;
|
|
2803
|
-
readonly replaceImplementation: boolean;
|
|
2804
|
-
}>>;
|
|
2805
1605
|
readonly moduleName: string;
|
|
2806
1606
|
readonly modules: Map<string, {
|
|
2807
1607
|
readonly name: string;
|
|
@@ -2810,7 +1610,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2810
1610
|
readonly useFoldersLayout: boolean | undefined;
|
|
2811
1611
|
readonly tsLikePackage: string | undefined;
|
|
2812
1612
|
}>;
|
|
2813
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2814
1613
|
readonly globalPackages: string[];
|
|
2815
1614
|
} | U | U_1 | U_2>;
|
|
2816
1615
|
success(): boolean;
|
|
@@ -2819,24 +1618,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2819
1618
|
readonly TypePrefix: string;
|
|
2820
1619
|
readonly LibraryPrefix: string;
|
|
2821
1620
|
readonly OptionalPrefix: string;
|
|
2822
|
-
readonly transformOnSerialize: {
|
|
2823
|
-
readonly from: string;
|
|
2824
|
-
readonly to: string;
|
|
2825
|
-
}[];
|
|
2826
1621
|
readonly rootComponents: string[];
|
|
2827
1622
|
readonly standaloneComponents: string[];
|
|
2828
1623
|
readonly parameterized: string[];
|
|
2829
1624
|
readonly ignoreMaterialized: string[];
|
|
2830
|
-
readonly ignoreGenerics: string[];
|
|
2831
1625
|
readonly builderClasses: string[];
|
|
2832
1626
|
readonly forceMaterialized: string[];
|
|
2833
1627
|
readonly forceCallback: Map<string, string[]>;
|
|
2834
1628
|
readonly forceResource: string[];
|
|
2835
|
-
readonly forceContext: string[];
|
|
2836
|
-
readonly hooks: Map<string, Map<string, {
|
|
2837
|
-
readonly hookName: string;
|
|
2838
|
-
readonly replaceImplementation: boolean;
|
|
2839
|
-
}>>;
|
|
2840
1629
|
readonly moduleName: string;
|
|
2841
1630
|
readonly modules: Map<string, {
|
|
2842
1631
|
readonly name: string;
|
|
@@ -2845,7 +1634,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2845
1634
|
readonly useFoldersLayout: boolean | undefined;
|
|
2846
1635
|
readonly tsLikePackage: string | undefined;
|
|
2847
1636
|
}>;
|
|
2848
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2849
1637
|
readonly globalPackages: string[];
|
|
2850
1638
|
} | U | U_1 | U_2;
|
|
2851
1639
|
error(): string;
|
|
@@ -2854,24 +1642,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2854
1642
|
readonly TypePrefix: string;
|
|
2855
1643
|
readonly LibraryPrefix: string;
|
|
2856
1644
|
readonly OptionalPrefix: string;
|
|
2857
|
-
readonly transformOnSerialize: {
|
|
2858
|
-
readonly from: string;
|
|
2859
|
-
readonly to: string;
|
|
2860
|
-
}[];
|
|
2861
1645
|
readonly rootComponents: string[];
|
|
2862
1646
|
readonly standaloneComponents: string[];
|
|
2863
1647
|
readonly parameterized: string[];
|
|
2864
1648
|
readonly ignoreMaterialized: string[];
|
|
2865
|
-
readonly ignoreGenerics: string[];
|
|
2866
1649
|
readonly builderClasses: string[];
|
|
2867
1650
|
readonly forceMaterialized: string[];
|
|
2868
1651
|
readonly forceCallback: Map<string, string[]>;
|
|
2869
1652
|
readonly forceResource: string[];
|
|
2870
|
-
readonly forceContext: string[];
|
|
2871
|
-
readonly hooks: Map<string, Map<string, {
|
|
2872
|
-
readonly hookName: string;
|
|
2873
|
-
readonly replaceImplementation: boolean;
|
|
2874
|
-
}>>;
|
|
2875
1653
|
readonly moduleName: string;
|
|
2876
1654
|
readonly modules: Map<string, {
|
|
2877
1655
|
readonly name: string;
|
|
@@ -2880,7 +1658,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2880
1658
|
readonly useFoldersLayout: boolean | undefined;
|
|
2881
1659
|
readonly tsLikePackage: string | undefined;
|
|
2882
1660
|
}>;
|
|
2883
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2884
1661
|
readonly globalPackages: string[];
|
|
2885
1662
|
} | U | U_1 | U_2>;
|
|
2886
1663
|
or<U_3>(x: U_3): {
|
|
@@ -2889,24 +1666,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2889
1666
|
readonly TypePrefix: string;
|
|
2890
1667
|
readonly LibraryPrefix: string;
|
|
2891
1668
|
readonly OptionalPrefix: string;
|
|
2892
|
-
readonly transformOnSerialize: {
|
|
2893
|
-
readonly from: string;
|
|
2894
|
-
readonly to: string;
|
|
2895
|
-
}[];
|
|
2896
1669
|
readonly rootComponents: string[];
|
|
2897
1670
|
readonly standaloneComponents: string[];
|
|
2898
1671
|
readonly parameterized: string[];
|
|
2899
1672
|
readonly ignoreMaterialized: string[];
|
|
2900
|
-
readonly ignoreGenerics: string[];
|
|
2901
1673
|
readonly builderClasses: string[];
|
|
2902
1674
|
readonly forceMaterialized: string[];
|
|
2903
1675
|
readonly forceCallback: Map<string, string[]>;
|
|
2904
1676
|
readonly forceResource: string[];
|
|
2905
|
-
readonly forceContext: string[];
|
|
2906
|
-
readonly hooks: Map<string, Map<string, {
|
|
2907
|
-
readonly hookName: string;
|
|
2908
|
-
readonly replaceImplementation: boolean;
|
|
2909
|
-
}>>;
|
|
2910
1677
|
readonly moduleName: string;
|
|
2911
1678
|
readonly modules: Map<string, {
|
|
2912
1679
|
readonly name: string;
|
|
@@ -2915,7 +1682,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2915
1682
|
readonly useFoldersLayout: boolean | undefined;
|
|
2916
1683
|
readonly tsLikePackage: string | undefined;
|
|
2917
1684
|
}>;
|
|
2918
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2919
1685
|
readonly globalPackages: string[];
|
|
2920
1686
|
} | U | U_1 | U_2 | U_3>;
|
|
2921
1687
|
success(): boolean;
|
|
@@ -2924,24 +1690,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2924
1690
|
readonly TypePrefix: string;
|
|
2925
1691
|
readonly LibraryPrefix: string;
|
|
2926
1692
|
readonly OptionalPrefix: string;
|
|
2927
|
-
readonly transformOnSerialize: {
|
|
2928
|
-
readonly from: string;
|
|
2929
|
-
readonly to: string;
|
|
2930
|
-
}[];
|
|
2931
1693
|
readonly rootComponents: string[];
|
|
2932
1694
|
readonly standaloneComponents: string[];
|
|
2933
1695
|
readonly parameterized: string[];
|
|
2934
1696
|
readonly ignoreMaterialized: string[];
|
|
2935
|
-
readonly ignoreGenerics: string[];
|
|
2936
1697
|
readonly builderClasses: string[];
|
|
2937
1698
|
readonly forceMaterialized: string[];
|
|
2938
1699
|
readonly forceCallback: Map<string, string[]>;
|
|
2939
1700
|
readonly forceResource: string[];
|
|
2940
|
-
readonly forceContext: string[];
|
|
2941
|
-
readonly hooks: Map<string, Map<string, {
|
|
2942
|
-
readonly hookName: string;
|
|
2943
|
-
readonly replaceImplementation: boolean;
|
|
2944
|
-
}>>;
|
|
2945
1701
|
readonly moduleName: string;
|
|
2946
1702
|
readonly modules: Map<string, {
|
|
2947
1703
|
readonly name: string;
|
|
@@ -2950,7 +1706,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2950
1706
|
readonly useFoldersLayout: boolean | undefined;
|
|
2951
1707
|
readonly tsLikePackage: string | undefined;
|
|
2952
1708
|
}>;
|
|
2953
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2954
1709
|
readonly globalPackages: string[];
|
|
2955
1710
|
} | U | U_1 | U_2 | U_3;
|
|
2956
1711
|
error(): string;
|
|
@@ -2959,24 +1714,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2959
1714
|
readonly TypePrefix: string;
|
|
2960
1715
|
readonly LibraryPrefix: string;
|
|
2961
1716
|
readonly OptionalPrefix: string;
|
|
2962
|
-
readonly transformOnSerialize: {
|
|
2963
|
-
readonly from: string;
|
|
2964
|
-
readonly to: string;
|
|
2965
|
-
}[];
|
|
2966
1717
|
readonly rootComponents: string[];
|
|
2967
1718
|
readonly standaloneComponents: string[];
|
|
2968
1719
|
readonly parameterized: string[];
|
|
2969
1720
|
readonly ignoreMaterialized: string[];
|
|
2970
|
-
readonly ignoreGenerics: string[];
|
|
2971
1721
|
readonly builderClasses: string[];
|
|
2972
1722
|
readonly forceMaterialized: string[];
|
|
2973
1723
|
readonly forceCallback: Map<string, string[]>;
|
|
2974
1724
|
readonly forceResource: string[];
|
|
2975
|
-
readonly forceContext: string[];
|
|
2976
|
-
readonly hooks: Map<string, Map<string, {
|
|
2977
|
-
readonly hookName: string;
|
|
2978
|
-
readonly replaceImplementation: boolean;
|
|
2979
|
-
}>>;
|
|
2980
1725
|
readonly moduleName: string;
|
|
2981
1726
|
readonly modules: Map<string, {
|
|
2982
1727
|
readonly name: string;
|
|
@@ -2985,7 +1730,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
2985
1730
|
readonly useFoldersLayout: boolean | undefined;
|
|
2986
1731
|
readonly tsLikePackage: string | undefined;
|
|
2987
1732
|
}>;
|
|
2988
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
2989
1733
|
readonly globalPackages: string[];
|
|
2990
1734
|
} | U | U_1 | U_2 | U_3>;
|
|
2991
1735
|
or<U_4>(x: U_4): {
|
|
@@ -2994,24 +1738,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
2994
1738
|
readonly TypePrefix: string;
|
|
2995
1739
|
readonly LibraryPrefix: string;
|
|
2996
1740
|
readonly OptionalPrefix: string;
|
|
2997
|
-
readonly transformOnSerialize: {
|
|
2998
|
-
readonly from: string;
|
|
2999
|
-
readonly to: string;
|
|
3000
|
-
}[];
|
|
3001
1741
|
readonly rootComponents: string[];
|
|
3002
1742
|
readonly standaloneComponents: string[];
|
|
3003
1743
|
readonly parameterized: string[];
|
|
3004
1744
|
readonly ignoreMaterialized: string[];
|
|
3005
|
-
readonly ignoreGenerics: string[];
|
|
3006
1745
|
readonly builderClasses: string[];
|
|
3007
1746
|
readonly forceMaterialized: string[];
|
|
3008
1747
|
readonly forceCallback: Map<string, string[]>;
|
|
3009
1748
|
readonly forceResource: string[];
|
|
3010
|
-
readonly forceContext: string[];
|
|
3011
|
-
readonly hooks: Map<string, Map<string, {
|
|
3012
|
-
readonly hookName: string;
|
|
3013
|
-
readonly replaceImplementation: boolean;
|
|
3014
|
-
}>>;
|
|
3015
1749
|
readonly moduleName: string;
|
|
3016
1750
|
readonly modules: Map<string, {
|
|
3017
1751
|
readonly name: string;
|
|
@@ -3020,7 +1754,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3020
1754
|
readonly useFoldersLayout: boolean | undefined;
|
|
3021
1755
|
readonly tsLikePackage: string | undefined;
|
|
3022
1756
|
}>;
|
|
3023
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3024
1757
|
readonly globalPackages: string[];
|
|
3025
1758
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
3026
1759
|
success(): boolean;
|
|
@@ -3029,24 +1762,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3029
1762
|
readonly TypePrefix: string;
|
|
3030
1763
|
readonly LibraryPrefix: string;
|
|
3031
1764
|
readonly OptionalPrefix: string;
|
|
3032
|
-
readonly transformOnSerialize: {
|
|
3033
|
-
readonly from: string;
|
|
3034
|
-
readonly to: string;
|
|
3035
|
-
}[];
|
|
3036
1765
|
readonly rootComponents: string[];
|
|
3037
1766
|
readonly standaloneComponents: string[];
|
|
3038
1767
|
readonly parameterized: string[];
|
|
3039
1768
|
readonly ignoreMaterialized: string[];
|
|
3040
|
-
readonly ignoreGenerics: string[];
|
|
3041
1769
|
readonly builderClasses: string[];
|
|
3042
1770
|
readonly forceMaterialized: string[];
|
|
3043
1771
|
readonly forceCallback: Map<string, string[]>;
|
|
3044
1772
|
readonly forceResource: string[];
|
|
3045
|
-
readonly forceContext: string[];
|
|
3046
|
-
readonly hooks: Map<string, Map<string, {
|
|
3047
|
-
readonly hookName: string;
|
|
3048
|
-
readonly replaceImplementation: boolean;
|
|
3049
|
-
}>>;
|
|
3050
1773
|
readonly moduleName: string;
|
|
3051
1774
|
readonly modules: Map<string, {
|
|
3052
1775
|
readonly name: string;
|
|
@@ -3055,7 +1778,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3055
1778
|
readonly useFoldersLayout: boolean | undefined;
|
|
3056
1779
|
readonly tsLikePackage: string | undefined;
|
|
3057
1780
|
}>;
|
|
3058
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3059
1781
|
readonly globalPackages: string[];
|
|
3060
1782
|
} | U | U_1 | U_2 | U_3 | U_4;
|
|
3061
1783
|
error(): string;
|
|
@@ -3064,24 +1786,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3064
1786
|
readonly TypePrefix: string;
|
|
3065
1787
|
readonly LibraryPrefix: string;
|
|
3066
1788
|
readonly OptionalPrefix: string;
|
|
3067
|
-
readonly transformOnSerialize: {
|
|
3068
|
-
readonly from: string;
|
|
3069
|
-
readonly to: string;
|
|
3070
|
-
}[];
|
|
3071
1789
|
readonly rootComponents: string[];
|
|
3072
1790
|
readonly standaloneComponents: string[];
|
|
3073
1791
|
readonly parameterized: string[];
|
|
3074
1792
|
readonly ignoreMaterialized: string[];
|
|
3075
|
-
readonly ignoreGenerics: string[];
|
|
3076
1793
|
readonly builderClasses: string[];
|
|
3077
1794
|
readonly forceMaterialized: string[];
|
|
3078
1795
|
readonly forceCallback: Map<string, string[]>;
|
|
3079
1796
|
readonly forceResource: string[];
|
|
3080
|
-
readonly forceContext: string[];
|
|
3081
|
-
readonly hooks: Map<string, Map<string, {
|
|
3082
|
-
readonly hookName: string;
|
|
3083
|
-
readonly replaceImplementation: boolean;
|
|
3084
|
-
}>>;
|
|
3085
1797
|
readonly moduleName: string;
|
|
3086
1798
|
readonly modules: Map<string, {
|
|
3087
1799
|
readonly name: string;
|
|
@@ -3090,7 +1802,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3090
1802
|
readonly useFoldersLayout: boolean | undefined;
|
|
3091
1803
|
readonly tsLikePackage: string | undefined;
|
|
3092
1804
|
}>;
|
|
3093
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3094
1805
|
readonly globalPackages: string[];
|
|
3095
1806
|
} | U | U_1 | U_2 | U_3 | U_4>;
|
|
3096
1807
|
or<U_5>(x: U_5): {
|
|
@@ -3099,24 +1810,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3099
1810
|
readonly TypePrefix: string;
|
|
3100
1811
|
readonly LibraryPrefix: string;
|
|
3101
1812
|
readonly OptionalPrefix: string;
|
|
3102
|
-
readonly transformOnSerialize: {
|
|
3103
|
-
readonly from: string;
|
|
3104
|
-
readonly to: string;
|
|
3105
|
-
}[];
|
|
3106
1813
|
readonly rootComponents: string[];
|
|
3107
1814
|
readonly standaloneComponents: string[];
|
|
3108
1815
|
readonly parameterized: string[];
|
|
3109
1816
|
readonly ignoreMaterialized: string[];
|
|
3110
|
-
readonly ignoreGenerics: string[];
|
|
3111
1817
|
readonly builderClasses: string[];
|
|
3112
1818
|
readonly forceMaterialized: string[];
|
|
3113
1819
|
readonly forceCallback: Map<string, string[]>;
|
|
3114
1820
|
readonly forceResource: string[];
|
|
3115
|
-
readonly forceContext: string[];
|
|
3116
|
-
readonly hooks: Map<string, Map<string, {
|
|
3117
|
-
readonly hookName: string;
|
|
3118
|
-
readonly replaceImplementation: boolean;
|
|
3119
|
-
}>>;
|
|
3120
1821
|
readonly moduleName: string;
|
|
3121
1822
|
readonly modules: Map<string, {
|
|
3122
1823
|
readonly name: string;
|
|
@@ -3125,7 +1826,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3125
1826
|
readonly useFoldersLayout: boolean | undefined;
|
|
3126
1827
|
readonly tsLikePackage: string | undefined;
|
|
3127
1828
|
}>;
|
|
3128
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3129
1829
|
readonly globalPackages: string[];
|
|
3130
1830
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
3131
1831
|
success(): boolean;
|
|
@@ -3134,24 +1834,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3134
1834
|
readonly TypePrefix: string;
|
|
3135
1835
|
readonly LibraryPrefix: string;
|
|
3136
1836
|
readonly OptionalPrefix: string;
|
|
3137
|
-
readonly transformOnSerialize: {
|
|
3138
|
-
readonly from: string;
|
|
3139
|
-
readonly to: string;
|
|
3140
|
-
}[];
|
|
3141
1837
|
readonly rootComponents: string[];
|
|
3142
1838
|
readonly standaloneComponents: string[];
|
|
3143
1839
|
readonly parameterized: string[];
|
|
3144
1840
|
readonly ignoreMaterialized: string[];
|
|
3145
|
-
readonly ignoreGenerics: string[];
|
|
3146
1841
|
readonly builderClasses: string[];
|
|
3147
1842
|
readonly forceMaterialized: string[];
|
|
3148
1843
|
readonly forceCallback: Map<string, string[]>;
|
|
3149
1844
|
readonly forceResource: string[];
|
|
3150
|
-
readonly forceContext: string[];
|
|
3151
|
-
readonly hooks: Map<string, Map<string, {
|
|
3152
|
-
readonly hookName: string;
|
|
3153
|
-
readonly replaceImplementation: boolean;
|
|
3154
|
-
}>>;
|
|
3155
1845
|
readonly moduleName: string;
|
|
3156
1846
|
readonly modules: Map<string, {
|
|
3157
1847
|
readonly name: string;
|
|
@@ -3160,7 +1850,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3160
1850
|
readonly useFoldersLayout: boolean | undefined;
|
|
3161
1851
|
readonly tsLikePackage: string | undefined;
|
|
3162
1852
|
}>;
|
|
3163
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3164
1853
|
readonly globalPackages: string[];
|
|
3165
1854
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5;
|
|
3166
1855
|
error(): string;
|
|
@@ -3169,24 +1858,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3169
1858
|
readonly TypePrefix: string;
|
|
3170
1859
|
readonly LibraryPrefix: string;
|
|
3171
1860
|
readonly OptionalPrefix: string;
|
|
3172
|
-
readonly transformOnSerialize: {
|
|
3173
|
-
readonly from: string;
|
|
3174
|
-
readonly to: string;
|
|
3175
|
-
}[];
|
|
3176
1861
|
readonly rootComponents: string[];
|
|
3177
1862
|
readonly standaloneComponents: string[];
|
|
3178
1863
|
readonly parameterized: string[];
|
|
3179
1864
|
readonly ignoreMaterialized: string[];
|
|
3180
|
-
readonly ignoreGenerics: string[];
|
|
3181
1865
|
readonly builderClasses: string[];
|
|
3182
1866
|
readonly forceMaterialized: string[];
|
|
3183
1867
|
readonly forceCallback: Map<string, string[]>;
|
|
3184
1868
|
readonly forceResource: string[];
|
|
3185
|
-
readonly forceContext: string[];
|
|
3186
|
-
readonly hooks: Map<string, Map<string, {
|
|
3187
|
-
readonly hookName: string;
|
|
3188
|
-
readonly replaceImplementation: boolean;
|
|
3189
|
-
}>>;
|
|
3190
1869
|
readonly moduleName: string;
|
|
3191
1870
|
readonly modules: Map<string, {
|
|
3192
1871
|
readonly name: string;
|
|
@@ -3195,7 +1874,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3195
1874
|
readonly useFoldersLayout: boolean | undefined;
|
|
3196
1875
|
readonly tsLikePackage: string | undefined;
|
|
3197
1876
|
}>;
|
|
3198
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3199
1877
|
readonly globalPackages: string[];
|
|
3200
1878
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5>;
|
|
3201
1879
|
or<U_6>(x: U_6): {
|
|
@@ -3204,24 +1882,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3204
1882
|
readonly TypePrefix: string;
|
|
3205
1883
|
readonly LibraryPrefix: string;
|
|
3206
1884
|
readonly OptionalPrefix: string;
|
|
3207
|
-
readonly transformOnSerialize: {
|
|
3208
|
-
readonly from: string;
|
|
3209
|
-
readonly to: string;
|
|
3210
|
-
}[];
|
|
3211
1885
|
readonly rootComponents: string[];
|
|
3212
1886
|
readonly standaloneComponents: string[];
|
|
3213
1887
|
readonly parameterized: string[];
|
|
3214
1888
|
readonly ignoreMaterialized: string[];
|
|
3215
|
-
readonly ignoreGenerics: string[];
|
|
3216
1889
|
readonly builderClasses: string[];
|
|
3217
1890
|
readonly forceMaterialized: string[];
|
|
3218
1891
|
readonly forceCallback: Map<string, string[]>;
|
|
3219
1892
|
readonly forceResource: string[];
|
|
3220
|
-
readonly forceContext: string[];
|
|
3221
|
-
readonly hooks: Map<string, Map<string, {
|
|
3222
|
-
readonly hookName: string;
|
|
3223
|
-
readonly replaceImplementation: boolean;
|
|
3224
|
-
}>>;
|
|
3225
1893
|
readonly moduleName: string;
|
|
3226
1894
|
readonly modules: Map<string, {
|
|
3227
1895
|
readonly name: string;
|
|
@@ -3230,7 +1898,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3230
1898
|
readonly useFoldersLayout: boolean | undefined;
|
|
3231
1899
|
readonly tsLikePackage: string | undefined;
|
|
3232
1900
|
}>;
|
|
3233
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3234
1901
|
readonly globalPackages: string[];
|
|
3235
1902
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
3236
1903
|
success(): boolean;
|
|
@@ -3239,24 +1906,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3239
1906
|
readonly TypePrefix: string;
|
|
3240
1907
|
readonly LibraryPrefix: string;
|
|
3241
1908
|
readonly OptionalPrefix: string;
|
|
3242
|
-
readonly transformOnSerialize: {
|
|
3243
|
-
readonly from: string;
|
|
3244
|
-
readonly to: string;
|
|
3245
|
-
}[];
|
|
3246
1909
|
readonly rootComponents: string[];
|
|
3247
1910
|
readonly standaloneComponents: string[];
|
|
3248
1911
|
readonly parameterized: string[];
|
|
3249
1912
|
readonly ignoreMaterialized: string[];
|
|
3250
|
-
readonly ignoreGenerics: string[];
|
|
3251
1913
|
readonly builderClasses: string[];
|
|
3252
1914
|
readonly forceMaterialized: string[];
|
|
3253
1915
|
readonly forceCallback: Map<string, string[]>;
|
|
3254
1916
|
readonly forceResource: string[];
|
|
3255
|
-
readonly forceContext: string[];
|
|
3256
|
-
readonly hooks: Map<string, Map<string, {
|
|
3257
|
-
readonly hookName: string;
|
|
3258
|
-
readonly replaceImplementation: boolean;
|
|
3259
|
-
}>>;
|
|
3260
1917
|
readonly moduleName: string;
|
|
3261
1918
|
readonly modules: Map<string, {
|
|
3262
1919
|
readonly name: string;
|
|
@@ -3265,7 +1922,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3265
1922
|
readonly useFoldersLayout: boolean | undefined;
|
|
3266
1923
|
readonly tsLikePackage: string | undefined;
|
|
3267
1924
|
}>;
|
|
3268
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3269
1925
|
readonly globalPackages: string[];
|
|
3270
1926
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6;
|
|
3271
1927
|
error(): string;
|
|
@@ -3274,24 +1930,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3274
1930
|
readonly TypePrefix: string;
|
|
3275
1931
|
readonly LibraryPrefix: string;
|
|
3276
1932
|
readonly OptionalPrefix: string;
|
|
3277
|
-
readonly transformOnSerialize: {
|
|
3278
|
-
readonly from: string;
|
|
3279
|
-
readonly to: string;
|
|
3280
|
-
}[];
|
|
3281
1933
|
readonly rootComponents: string[];
|
|
3282
1934
|
readonly standaloneComponents: string[];
|
|
3283
1935
|
readonly parameterized: string[];
|
|
3284
1936
|
readonly ignoreMaterialized: string[];
|
|
3285
|
-
readonly ignoreGenerics: string[];
|
|
3286
1937
|
readonly builderClasses: string[];
|
|
3287
1938
|
readonly forceMaterialized: string[];
|
|
3288
1939
|
readonly forceCallback: Map<string, string[]>;
|
|
3289
1940
|
readonly forceResource: string[];
|
|
3290
|
-
readonly forceContext: string[];
|
|
3291
|
-
readonly hooks: Map<string, Map<string, {
|
|
3292
|
-
readonly hookName: string;
|
|
3293
|
-
readonly replaceImplementation: boolean;
|
|
3294
|
-
}>>;
|
|
3295
1941
|
readonly moduleName: string;
|
|
3296
1942
|
readonly modules: Map<string, {
|
|
3297
1943
|
readonly name: string;
|
|
@@ -3300,7 +1946,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3300
1946
|
readonly useFoldersLayout: boolean | undefined;
|
|
3301
1947
|
readonly tsLikePackage: string | undefined;
|
|
3302
1948
|
}>;
|
|
3303
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3304
1949
|
readonly globalPackages: string[];
|
|
3305
1950
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6>;
|
|
3306
1951
|
or<U_7>(x: U_7): {
|
|
@@ -3309,24 +1954,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3309
1954
|
readonly TypePrefix: string;
|
|
3310
1955
|
readonly LibraryPrefix: string;
|
|
3311
1956
|
readonly OptionalPrefix: string;
|
|
3312
|
-
readonly transformOnSerialize: {
|
|
3313
|
-
readonly from: string;
|
|
3314
|
-
readonly to: string;
|
|
3315
|
-
}[];
|
|
3316
1957
|
readonly rootComponents: string[];
|
|
3317
1958
|
readonly standaloneComponents: string[];
|
|
3318
1959
|
readonly parameterized: string[];
|
|
3319
1960
|
readonly ignoreMaterialized: string[];
|
|
3320
|
-
readonly ignoreGenerics: string[];
|
|
3321
1961
|
readonly builderClasses: string[];
|
|
3322
1962
|
readonly forceMaterialized: string[];
|
|
3323
1963
|
readonly forceCallback: Map<string, string[]>;
|
|
3324
1964
|
readonly forceResource: string[];
|
|
3325
|
-
readonly forceContext: string[];
|
|
3326
|
-
readonly hooks: Map<string, Map<string, {
|
|
3327
|
-
readonly hookName: string;
|
|
3328
|
-
readonly replaceImplementation: boolean;
|
|
3329
|
-
}>>;
|
|
3330
1965
|
readonly moduleName: string;
|
|
3331
1966
|
readonly modules: Map<string, {
|
|
3332
1967
|
readonly name: string;
|
|
@@ -3335,7 +1970,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3335
1970
|
readonly useFoldersLayout: boolean | undefined;
|
|
3336
1971
|
readonly tsLikePackage: string | undefined;
|
|
3337
1972
|
}>;
|
|
3338
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3339
1973
|
readonly globalPackages: string[];
|
|
3340
1974
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
3341
1975
|
success(): boolean;
|
|
@@ -3344,24 +1978,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3344
1978
|
readonly TypePrefix: string;
|
|
3345
1979
|
readonly LibraryPrefix: string;
|
|
3346
1980
|
readonly OptionalPrefix: string;
|
|
3347
|
-
readonly transformOnSerialize: {
|
|
3348
|
-
readonly from: string;
|
|
3349
|
-
readonly to: string;
|
|
3350
|
-
}[];
|
|
3351
1981
|
readonly rootComponents: string[];
|
|
3352
1982
|
readonly standaloneComponents: string[];
|
|
3353
1983
|
readonly parameterized: string[];
|
|
3354
1984
|
readonly ignoreMaterialized: string[];
|
|
3355
|
-
readonly ignoreGenerics: string[];
|
|
3356
1985
|
readonly builderClasses: string[];
|
|
3357
1986
|
readonly forceMaterialized: string[];
|
|
3358
1987
|
readonly forceCallback: Map<string, string[]>;
|
|
3359
1988
|
readonly forceResource: string[];
|
|
3360
|
-
readonly forceContext: string[];
|
|
3361
|
-
readonly hooks: Map<string, Map<string, {
|
|
3362
|
-
readonly hookName: string;
|
|
3363
|
-
readonly replaceImplementation: boolean;
|
|
3364
|
-
}>>;
|
|
3365
1989
|
readonly moduleName: string;
|
|
3366
1990
|
readonly modules: Map<string, {
|
|
3367
1991
|
readonly name: string;
|
|
@@ -3370,7 +1994,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3370
1994
|
readonly useFoldersLayout: boolean | undefined;
|
|
3371
1995
|
readonly tsLikePackage: string | undefined;
|
|
3372
1996
|
}>;
|
|
3373
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3374
1997
|
readonly globalPackages: string[];
|
|
3375
1998
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7;
|
|
3376
1999
|
error(): string;
|
|
@@ -3379,24 +2002,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3379
2002
|
readonly TypePrefix: string;
|
|
3380
2003
|
readonly LibraryPrefix: string;
|
|
3381
2004
|
readonly OptionalPrefix: string;
|
|
3382
|
-
readonly transformOnSerialize: {
|
|
3383
|
-
readonly from: string;
|
|
3384
|
-
readonly to: string;
|
|
3385
|
-
}[];
|
|
3386
2005
|
readonly rootComponents: string[];
|
|
3387
2006
|
readonly standaloneComponents: string[];
|
|
3388
2007
|
readonly parameterized: string[];
|
|
3389
2008
|
readonly ignoreMaterialized: string[];
|
|
3390
|
-
readonly ignoreGenerics: string[];
|
|
3391
2009
|
readonly builderClasses: string[];
|
|
3392
2010
|
readonly forceMaterialized: string[];
|
|
3393
2011
|
readonly forceCallback: Map<string, string[]>;
|
|
3394
2012
|
readonly forceResource: string[];
|
|
3395
|
-
readonly forceContext: string[];
|
|
3396
|
-
readonly hooks: Map<string, Map<string, {
|
|
3397
|
-
readonly hookName: string;
|
|
3398
|
-
readonly replaceImplementation: boolean;
|
|
3399
|
-
}>>;
|
|
3400
2013
|
readonly moduleName: string;
|
|
3401
2014
|
readonly modules: Map<string, {
|
|
3402
2015
|
readonly name: string;
|
|
@@ -3405,7 +2018,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3405
2018
|
readonly useFoldersLayout: boolean | undefined;
|
|
3406
2019
|
readonly tsLikePackage: string | undefined;
|
|
3407
2020
|
}>;
|
|
3408
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3409
2021
|
readonly globalPackages: string[];
|
|
3410
2022
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7>;
|
|
3411
2023
|
or<U_8>(x: U_8): {
|
|
@@ -3414,24 +2026,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3414
2026
|
readonly TypePrefix: string;
|
|
3415
2027
|
readonly LibraryPrefix: string;
|
|
3416
2028
|
readonly OptionalPrefix: string;
|
|
3417
|
-
readonly transformOnSerialize: {
|
|
3418
|
-
readonly from: string;
|
|
3419
|
-
readonly to: string;
|
|
3420
|
-
}[];
|
|
3421
2029
|
readonly rootComponents: string[];
|
|
3422
2030
|
readonly standaloneComponents: string[];
|
|
3423
2031
|
readonly parameterized: string[];
|
|
3424
2032
|
readonly ignoreMaterialized: string[];
|
|
3425
|
-
readonly ignoreGenerics: string[];
|
|
3426
2033
|
readonly builderClasses: string[];
|
|
3427
2034
|
readonly forceMaterialized: string[];
|
|
3428
2035
|
readonly forceCallback: Map<string, string[]>;
|
|
3429
2036
|
readonly forceResource: string[];
|
|
3430
|
-
readonly forceContext: string[];
|
|
3431
|
-
readonly hooks: Map<string, Map<string, {
|
|
3432
|
-
readonly hookName: string;
|
|
3433
|
-
readonly replaceImplementation: boolean;
|
|
3434
|
-
}>>;
|
|
3435
2037
|
readonly moduleName: string;
|
|
3436
2038
|
readonly modules: Map<string, {
|
|
3437
2039
|
readonly name: string;
|
|
@@ -3440,7 +2042,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3440
2042
|
readonly useFoldersLayout: boolean | undefined;
|
|
3441
2043
|
readonly tsLikePackage: string | undefined;
|
|
3442
2044
|
}>;
|
|
3443
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3444
2045
|
readonly globalPackages: string[];
|
|
3445
2046
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
3446
2047
|
success(): boolean;
|
|
@@ -3449,24 +2050,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3449
2050
|
readonly TypePrefix: string;
|
|
3450
2051
|
readonly LibraryPrefix: string;
|
|
3451
2052
|
readonly OptionalPrefix: string;
|
|
3452
|
-
readonly transformOnSerialize: {
|
|
3453
|
-
readonly from: string;
|
|
3454
|
-
readonly to: string;
|
|
3455
|
-
}[];
|
|
3456
2053
|
readonly rootComponents: string[];
|
|
3457
2054
|
readonly standaloneComponents: string[];
|
|
3458
2055
|
readonly parameterized: string[];
|
|
3459
2056
|
readonly ignoreMaterialized: string[];
|
|
3460
|
-
readonly ignoreGenerics: string[];
|
|
3461
2057
|
readonly builderClasses: string[];
|
|
3462
2058
|
readonly forceMaterialized: string[];
|
|
3463
2059
|
readonly forceCallback: Map<string, string[]>;
|
|
3464
2060
|
readonly forceResource: string[];
|
|
3465
|
-
readonly forceContext: string[];
|
|
3466
|
-
readonly hooks: Map<string, Map<string, {
|
|
3467
|
-
readonly hookName: string;
|
|
3468
|
-
readonly replaceImplementation: boolean;
|
|
3469
|
-
}>>;
|
|
3470
2061
|
readonly moduleName: string;
|
|
3471
2062
|
readonly modules: Map<string, {
|
|
3472
2063
|
readonly name: string;
|
|
@@ -3475,7 +2066,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3475
2066
|
readonly useFoldersLayout: boolean | undefined;
|
|
3476
2067
|
readonly tsLikePackage: string | undefined;
|
|
3477
2068
|
}>;
|
|
3478
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3479
2069
|
readonly globalPackages: string[];
|
|
3480
2070
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8;
|
|
3481
2071
|
error(): string;
|
|
@@ -3484,24 +2074,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3484
2074
|
readonly TypePrefix: string;
|
|
3485
2075
|
readonly LibraryPrefix: string;
|
|
3486
2076
|
readonly OptionalPrefix: string;
|
|
3487
|
-
readonly transformOnSerialize: {
|
|
3488
|
-
readonly from: string;
|
|
3489
|
-
readonly to: string;
|
|
3490
|
-
}[];
|
|
3491
2077
|
readonly rootComponents: string[];
|
|
3492
2078
|
readonly standaloneComponents: string[];
|
|
3493
2079
|
readonly parameterized: string[];
|
|
3494
2080
|
readonly ignoreMaterialized: string[];
|
|
3495
|
-
readonly ignoreGenerics: string[];
|
|
3496
2081
|
readonly builderClasses: string[];
|
|
3497
2082
|
readonly forceMaterialized: string[];
|
|
3498
2083
|
readonly forceCallback: Map<string, string[]>;
|
|
3499
2084
|
readonly forceResource: string[];
|
|
3500
|
-
readonly forceContext: string[];
|
|
3501
|
-
readonly hooks: Map<string, Map<string, {
|
|
3502
|
-
readonly hookName: string;
|
|
3503
|
-
readonly replaceImplementation: boolean;
|
|
3504
|
-
}>>;
|
|
3505
2085
|
readonly moduleName: string;
|
|
3506
2086
|
readonly modules: Map<string, {
|
|
3507
2087
|
readonly name: string;
|
|
@@ -3510,7 +2090,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3510
2090
|
readonly useFoldersLayout: boolean | undefined;
|
|
3511
2091
|
readonly tsLikePackage: string | undefined;
|
|
3512
2092
|
}>;
|
|
3513
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3514
2093
|
readonly globalPackages: string[];
|
|
3515
2094
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8>;
|
|
3516
2095
|
or<U_9>(x: U_9): {
|
|
@@ -3519,24 +2098,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3519
2098
|
readonly TypePrefix: string;
|
|
3520
2099
|
readonly LibraryPrefix: string;
|
|
3521
2100
|
readonly OptionalPrefix: string;
|
|
3522
|
-
readonly transformOnSerialize: {
|
|
3523
|
-
readonly from: string;
|
|
3524
|
-
readonly to: string;
|
|
3525
|
-
}[];
|
|
3526
2101
|
readonly rootComponents: string[];
|
|
3527
2102
|
readonly standaloneComponents: string[];
|
|
3528
2103
|
readonly parameterized: string[];
|
|
3529
2104
|
readonly ignoreMaterialized: string[];
|
|
3530
|
-
readonly ignoreGenerics: string[];
|
|
3531
2105
|
readonly builderClasses: string[];
|
|
3532
2106
|
readonly forceMaterialized: string[];
|
|
3533
2107
|
readonly forceCallback: Map<string, string[]>;
|
|
3534
2108
|
readonly forceResource: string[];
|
|
3535
|
-
readonly forceContext: string[];
|
|
3536
|
-
readonly hooks: Map<string, Map<string, {
|
|
3537
|
-
readonly hookName: string;
|
|
3538
|
-
readonly replaceImplementation: boolean;
|
|
3539
|
-
}>>;
|
|
3540
2109
|
readonly moduleName: string;
|
|
3541
2110
|
readonly modules: Map<string, {
|
|
3542
2111
|
readonly name: string;
|
|
@@ -3545,7 +2114,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3545
2114
|
readonly useFoldersLayout: boolean | undefined;
|
|
3546
2115
|
readonly tsLikePackage: string | undefined;
|
|
3547
2116
|
}>;
|
|
3548
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3549
2117
|
readonly globalPackages: string[];
|
|
3550
2118
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
3551
2119
|
success(): boolean;
|
|
@@ -3554,24 +2122,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3554
2122
|
readonly TypePrefix: string;
|
|
3555
2123
|
readonly LibraryPrefix: string;
|
|
3556
2124
|
readonly OptionalPrefix: string;
|
|
3557
|
-
readonly transformOnSerialize: {
|
|
3558
|
-
readonly from: string;
|
|
3559
|
-
readonly to: string;
|
|
3560
|
-
}[];
|
|
3561
2125
|
readonly rootComponents: string[];
|
|
3562
2126
|
readonly standaloneComponents: string[];
|
|
3563
2127
|
readonly parameterized: string[];
|
|
3564
2128
|
readonly ignoreMaterialized: string[];
|
|
3565
|
-
readonly ignoreGenerics: string[];
|
|
3566
2129
|
readonly builderClasses: string[];
|
|
3567
2130
|
readonly forceMaterialized: string[];
|
|
3568
2131
|
readonly forceCallback: Map<string, string[]>;
|
|
3569
2132
|
readonly forceResource: string[];
|
|
3570
|
-
readonly forceContext: string[];
|
|
3571
|
-
readonly hooks: Map<string, Map<string, {
|
|
3572
|
-
readonly hookName: string;
|
|
3573
|
-
readonly replaceImplementation: boolean;
|
|
3574
|
-
}>>;
|
|
3575
2133
|
readonly moduleName: string;
|
|
3576
2134
|
readonly modules: Map<string, {
|
|
3577
2135
|
readonly name: string;
|
|
@@ -3580,7 +2138,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3580
2138
|
readonly useFoldersLayout: boolean | undefined;
|
|
3581
2139
|
readonly tsLikePackage: string | undefined;
|
|
3582
2140
|
}>;
|
|
3583
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3584
2141
|
readonly globalPackages: string[];
|
|
3585
2142
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9;
|
|
3586
2143
|
error(): string;
|
|
@@ -3589,24 +2146,14 @@ export declare const CoreConfigurationSchema: {
|
|
|
3589
2146
|
readonly TypePrefix: string;
|
|
3590
2147
|
readonly LibraryPrefix: string;
|
|
3591
2148
|
readonly OptionalPrefix: string;
|
|
3592
|
-
readonly transformOnSerialize: {
|
|
3593
|
-
readonly from: string;
|
|
3594
|
-
readonly to: string;
|
|
3595
|
-
}[];
|
|
3596
2149
|
readonly rootComponents: string[];
|
|
3597
2150
|
readonly standaloneComponents: string[];
|
|
3598
2151
|
readonly parameterized: string[];
|
|
3599
2152
|
readonly ignoreMaterialized: string[];
|
|
3600
|
-
readonly ignoreGenerics: string[];
|
|
3601
2153
|
readonly builderClasses: string[];
|
|
3602
2154
|
readonly forceMaterialized: string[];
|
|
3603
2155
|
readonly forceCallback: Map<string, string[]>;
|
|
3604
2156
|
readonly forceResource: string[];
|
|
3605
|
-
readonly forceContext: string[];
|
|
3606
|
-
readonly hooks: Map<string, Map<string, {
|
|
3607
|
-
readonly hookName: string;
|
|
3608
|
-
readonly replaceImplementation: boolean;
|
|
3609
|
-
}>>;
|
|
3610
2157
|
readonly moduleName: string;
|
|
3611
2158
|
readonly modules: Map<string, {
|
|
3612
2159
|
readonly name: string;
|
|
@@ -3615,7 +2162,6 @@ export declare const CoreConfigurationSchema: {
|
|
|
3615
2162
|
readonly useFoldersLayout: boolean | undefined;
|
|
3616
2163
|
readonly tsLikePackage: string | undefined;
|
|
3617
2164
|
}>;
|
|
3618
|
-
readonly libraryNameMapping: Map<string, Map<string, string>> | undefined;
|
|
3619
2165
|
readonly globalPackages: string[];
|
|
3620
2166
|
} | U | U_1 | U_2 | U_3 | U_4 | U_5 | U_6 | U_7 | U_8 | U_9>;
|
|
3621
2167
|
or<U_10>(x: U_10): any;
|
|
@@ -3640,10 +2186,5 @@ export declare function setDefaultConfiguration<T extends CoreConfiguration>(con
|
|
|
3640
2186
|
export declare function patchDefaultConfiguration<T extends CoreConfiguration>(config: Partial<T>): void;
|
|
3641
2187
|
export declare function generatorConfiguration<T extends CoreConfiguration>(): T;
|
|
3642
2188
|
export declare function generatorTypePrefix(): string;
|
|
3643
|
-
|
|
3644
|
-
hookName: string;
|
|
3645
|
-
replaceImplementation: boolean;
|
|
3646
|
-
}
|
|
3647
|
-
export declare function getHookMethod(className: string, methodName: string): HookMethod | undefined;
|
|
3648
|
-
export {};
|
|
2189
|
+
export declare function parseConfigFiles<T>(schema: ConfigSchema<T>, configurationFiles: string[]): T;
|
|
3649
2190
|
//# sourceMappingURL=config.d.ts.map
|