typescript
Version:
TypeScript is a language for application scale JavaScript development
372 lines • 146 kB
JSON
{
"Unterminated_string_literal_1002" : "Unterminated string literal.",
"Identifier_expected_1003" : "Identifier expected.",
"_0_expected_1005" : "'{0}' expected.",
"A_file_cannot_have_a_reference_to_itself_1006" : "A file cannot have a reference to itself.",
"Trailing_comma_not_allowed_1009" : "Trailing comma not allowed.",
"Asterisk_Slash_expected_1010" : "'*/' expected.",
"An_element_access_expression_should_take_an_argument_1011" : "An element access expression should take an argument.",
"Unexpected_token_1012" : "Unexpected token.",
"A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma_1013" : "A rest parameter or binding pattern may not have a trailing comma.",
"A_rest_parameter_must_be_last_in_a_parameter_list_1014" : "A rest parameter must be last in a parameter list.",
"Parameter_cannot_have_question_mark_and_initializer_1015" : "Parameter cannot have question mark and initializer.",
"A_required_parameter_cannot_follow_an_optional_parameter_1016" : "A required parameter cannot follow an optional parameter.",
"An_index_signature_cannot_have_a_rest_parameter_1017" : "An index signature cannot have a rest parameter.",
"An_index_signature_parameter_cannot_have_an_accessibility_modifier_1018" : "An index signature parameter cannot have an accessibility modifier.",
"An_index_signature_parameter_cannot_have_a_question_mark_1019" : "An index signature parameter cannot have a question mark.",
"An_index_signature_parameter_cannot_have_an_initializer_1020" : "An index signature parameter cannot have an initializer.",
"An_index_signature_must_have_a_type_annotation_1021" : "An index signature must have a type annotation.",
"An_index_signature_parameter_must_have_a_type_annotation_1022" : "An index signature parameter must have a type annotation.",
"An_index_signature_parameter_type_must_be_string_or_number_1023" : "An index signature parameter type must be 'string' or 'number'.",
"readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature_1024" : "'readonly' modifier can only appear on a property declaration or index signature.",
"Accessibility_modifier_already_seen_1028" : "Accessibility modifier already seen.",
"_0_modifier_must_precede_1_modifier_1029" : "'{0}' modifier must precede '{1}' modifier.",
"_0_modifier_already_seen_1030" : "'{0}' modifier already seen.",
"_0_modifier_cannot_appear_on_a_class_element_1031" : "'{0}' modifier cannot appear on a class element.",
"super_must_be_followed_by_an_argument_list_or_member_access_1034" : "'super' must be followed by an argument list or member access.",
"Only_ambient_modules_can_use_quoted_names_1035" : "Only ambient modules can use quoted names.",
"Statements_are_not_allowed_in_ambient_contexts_1036" : "Statements are not allowed in ambient contexts.",
"A_declare_modifier_cannot_be_used_in_an_already_ambient_context_1038" : "A 'declare' modifier cannot be used in an already ambient context.",
"Initializers_are_not_allowed_in_ambient_contexts_1039" : "Initializers are not allowed in ambient contexts.",
"_0_modifier_cannot_be_used_in_an_ambient_context_1040" : "'{0}' modifier cannot be used in an ambient context.",
"_0_modifier_cannot_be_used_with_a_class_declaration_1041" : "'{0}' modifier cannot be used with a class declaration.",
"_0_modifier_cannot_be_used_here_1042" : "'{0}' modifier cannot be used here.",
"_0_modifier_cannot_appear_on_a_data_property_1043" : "'{0}' modifier cannot appear on a data property.",
"_0_modifier_cannot_appear_on_a_module_or_namespace_element_1044" : "'{0}' modifier cannot appear on a module or namespace element.",
"A_0_modifier_cannot_be_used_with_an_interface_declaration_1045" : "A '{0}' modifier cannot be used with an interface declaration.",
"A_declare_modifier_is_required_for_a_top_level_declaration_in_a_d_ts_file_1046" : "A 'declare' modifier is required for a top level declaration in a .d.ts file.",
"A_rest_parameter_cannot_be_optional_1047" : "A rest parameter cannot be optional.",
"A_rest_parameter_cannot_have_an_initializer_1048" : "A rest parameter cannot have an initializer.",
"A_set_accessor_must_have_exactly_one_parameter_1049" : "A 'set' accessor must have exactly one parameter.",
"A_set_accessor_cannot_have_an_optional_parameter_1051" : "A 'set' accessor cannot have an optional parameter.",
"A_set_accessor_parameter_cannot_have_an_initializer_1052" : "A 'set' accessor parameter cannot have an initializer.",
"A_set_accessor_cannot_have_rest_parameter_1053" : "A 'set' accessor cannot have rest parameter.",
"A_get_accessor_cannot_have_parameters_1054" : "A 'get' accessor cannot have parameters.",
"Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Prom_1055" : "Type '{0}' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value.",
"Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher_1056" : "Accessors are only available when targeting ECMAScript 5 and higher.",
"An_async_function_or_method_must_have_a_valid_awaitable_return_type_1057" : "An async function or method must have a valid awaitable return type.",
"The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_t_1058" : "The return type of an async function must either be a valid promise or must not contain a callable 'then' member.",
"A_promise_must_have_a_then_method_1059" : "A promise must have a 'then' method.",
"The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback_1060" : "The first parameter of the 'then' method of a promise must be a callback.",
"Enum_member_must_have_initializer_1061" : "Enum member must have initializer.",
"Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method_1062" : "Type is referenced directly or indirectly in the fulfillment callback of its own 'then' method.",
"An_export_assignment_cannot_be_used_in_a_namespace_1063" : "An export assignment cannot be used in a namespace.",
"The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_1064" : "The return type of an async function or method must be the global Promise<T> type.",
"In_ambient_enum_declarations_member_initializer_must_be_constant_expression_1066" : "In ambient enum declarations member initializer must be constant expression.",
"Unexpected_token_A_constructor_method_accessor_or_property_was_expected_1068" : "Unexpected token. A constructor, method, accessor, or property was expected.",
"_0_modifier_cannot_appear_on_a_type_member_1070" : "'{0}' modifier cannot appear on a type member.",
"_0_modifier_cannot_appear_on_an_index_signature_1071" : "'{0}' modifier cannot appear on an index signature.",
"A_0_modifier_cannot_be_used_with_an_import_declaration_1079" : "A '{0}' modifier cannot be used with an import declaration.",
"Invalid_reference_directive_syntax_1084" : "Invalid 'reference' directive syntax.",
"Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0_1085" : "Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'.",
"An_accessor_cannot_be_declared_in_an_ambient_context_1086" : "An accessor cannot be declared in an ambient context.",
"_0_modifier_cannot_appear_on_a_constructor_declaration_1089" : "'{0}' modifier cannot appear on a constructor declaration.",
"_0_modifier_cannot_appear_on_a_parameter_1090" : "'{0}' modifier cannot appear on a parameter.",
"Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement_1091" : "Only a single variable declaration is allowed in a 'for...in' statement.",
"Type_parameters_cannot_appear_on_a_constructor_declaration_1092" : "Type parameters cannot appear on a constructor declaration.",
"Type_annotation_cannot_appear_on_a_constructor_declaration_1093" : "Type annotation cannot appear on a constructor declaration.",
"An_accessor_cannot_have_type_parameters_1094" : "An accessor cannot have type parameters.",
"A_set_accessor_cannot_have_a_return_type_annotation_1095" : "A 'set' accessor cannot have a return type annotation.",
"An_index_signature_must_have_exactly_one_parameter_1096" : "An index signature must have exactly one parameter.",
"_0_list_cannot_be_empty_1097" : "'{0}' list cannot be empty.",
"Type_parameter_list_cannot_be_empty_1098" : "Type parameter list cannot be empty.",
"Type_argument_list_cannot_be_empty_1099" : "Type argument list cannot be empty.",
"Invalid_use_of_0_in_strict_mode_1100" : "Invalid use of '{0}' in strict mode.",
"with_statements_are_not_allowed_in_strict_mode_1101" : "'with' statements are not allowed in strict mode.",
"delete_cannot_be_called_on_an_identifier_in_strict_mode_1102" : "'delete' cannot be called on an identifier in strict mode.",
"A_for_await_of_statement_is_only_allowed_within_an_async_function_or_async_generator_1103" : "A 'for-await-of' statement is only allowed within an async function or async generator.",
"A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement_1104" : "A 'continue' statement can only be used within an enclosing iteration statement.",
"A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement_1105" : "A 'break' statement can only be used within an enclosing iteration or switch statement.",
"Jump_target_cannot_cross_function_boundary_1107" : "Jump target cannot cross function boundary.",
"A_return_statement_can_only_be_used_within_a_function_body_1108" : "A 'return' statement can only be used within a function body.",
"Expression_expected_1109" : "Expression expected.",
"Type_expected_1110" : "Type expected.",
"A_default_clause_cannot_appear_more_than_once_in_a_switch_statement_1113" : "A 'default' clause cannot appear more than once in a 'switch' statement.",
"Duplicate_label_0_1114" : "Duplicate label '{0}'.",
"A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement_1115" : "A 'continue' statement can only jump to a label of an enclosing iteration statement.",
"A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement_1116" : "A 'break' statement can only jump to a label of an enclosing statement.",
"An_object_literal_cannot_have_multiple_properties_with_the_same_name_in_strict_mode_1117" : "An object literal cannot have multiple properties with the same name in strict mode.",
"An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118" : "An object literal cannot have multiple get/set accessors with the same name.",
"An_object_literal_cannot_have_property_and_accessor_with_the_same_name_1119" : "An object literal cannot have property and accessor with the same name.",
"An_export_assignment_cannot_have_modifiers_1120" : "An export assignment cannot have modifiers.",
"Octal_literals_are_not_allowed_in_strict_mode_1121" : "Octal literals are not allowed in strict mode.",
"A_tuple_type_element_list_cannot_be_empty_1122" : "A tuple type element list cannot be empty.",
"Variable_declaration_list_cannot_be_empty_1123" : "Variable declaration list cannot be empty.",
"Digit_expected_1124" : "Digit expected.",
"Hexadecimal_digit_expected_1125" : "Hexadecimal digit expected.",
"Unexpected_end_of_text_1126" : "Unexpected end of text.",
"Invalid_character_1127" : "Invalid character.",
"Declaration_or_statement_expected_1128" : "Declaration or statement expected.",
"Statement_expected_1129" : "Statement expected.",
"case_or_default_expected_1130" : "'case' or 'default' expected.",
"Property_or_signature_expected_1131" : "Property or signature expected.",
"Enum_member_expected_1132" : "Enum member expected.",
"Variable_declaration_expected_1134" : "Variable declaration expected.",
"Argument_expression_expected_1135" : "Argument expression expected.",
"Property_assignment_expected_1136" : "Property assignment expected.",
"Expression_or_comma_expected_1137" : "Expression or comma expected.",
"Parameter_declaration_expected_1138" : "Parameter declaration expected.",
"Type_parameter_declaration_expected_1139" : "Type parameter declaration expected.",
"Type_argument_expected_1140" : "Type argument expected.",
"String_literal_expected_1141" : "String literal expected.",
"Line_break_not_permitted_here_1142" : "Line break not permitted here.",
"or_expected_1144" : "'{' or ';' expected.",
"Declaration_expected_1146" : "Declaration expected.",
"Import_declarations_in_a_namespace_cannot_reference_a_module_1147" : "Import declarations in a namespace cannot reference a module.",
"Cannot_use_imports_exports_or_module_augmentations_when_module_is_none_1148" : "Cannot use imports, exports, or module augmentations when '--module' is 'none'.",
"File_name_0_differs_from_already_included_file_name_1_only_in_casing_1149" : "File name '{0}' differs from already included file name '{1}' only in casing.",
"new_T_cannot_be_used_to_create_an_array_Use_new_Array_T_instead_1150" : "'new T[]' cannot be used to create an array. Use 'new Array<T>()' instead.",
"const_declarations_must_be_initialized_1155" : "'const' declarations must be initialized.",
"const_declarations_can_only_be_declared_inside_a_block_1156" : "'const' declarations can only be declared inside a block.",
"let_declarations_can_only_be_declared_inside_a_block_1157" : "'let' declarations can only be declared inside a block.",
"Unterminated_template_literal_1160" : "Unterminated template literal.",
"Unterminated_regular_expression_literal_1161" : "Unterminated regular expression literal.",
"An_object_member_cannot_be_declared_optional_1162" : "An object member cannot be declared optional.",
"A_yield_expression_is_only_allowed_in_a_generator_body_1163" : "A 'yield' expression is only allowed in a generator body.",
"Computed_property_names_are_not_allowed_in_enums_1164" : "Computed property names are not allowed in enums.",
"A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_t_1165" : "A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type.",
"A_computed_property_name_in_a_class_property_declaration_must_refer_to_an_expression_whose_type_is_a_1166" : "A computed property name in a class property declaration must refer to an expression whose type is a literal type or a 'unique symbol' type.",
"A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_ty_1168" : "A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type.",
"A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_1169" : "A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type.",
"A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type__1170" : "A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type.",
"A_comma_expression_is_not_allowed_in_a_computed_property_name_1171" : "A comma expression is not allowed in a computed property name.",
"extends_clause_already_seen_1172" : "'extends' clause already seen.",
"extends_clause_must_precede_implements_clause_1173" : "'extends' clause must precede 'implements' clause.",
"Classes_can_only_extend_a_single_class_1174" : "Classes can only extend a single class.",
"implements_clause_already_seen_1175" : "'implements' clause already seen.",
"Interface_declaration_cannot_have_implements_clause_1176" : "Interface declaration cannot have 'implements' clause.",
"Binary_digit_expected_1177" : "Binary digit expected.",
"Octal_digit_expected_1178" : "Octal digit expected.",
"Unexpected_token_expected_1179" : "Unexpected token. '{' expected.",
"Property_destructuring_pattern_expected_1180" : "Property destructuring pattern expected.",
"Array_element_destructuring_pattern_expected_1181" : "Array element destructuring pattern expected.",
"A_destructuring_declaration_must_have_an_initializer_1182" : "A destructuring declaration must have an initializer.",
"An_implementation_cannot_be_declared_in_ambient_contexts_1183" : "An implementation cannot be declared in ambient contexts.",
"Modifiers_cannot_appear_here_1184" : "Modifiers cannot appear here.",
"Merge_conflict_marker_encountered_1185" : "Merge conflict marker encountered.",
"A_rest_element_cannot_have_an_initializer_1186" : "A rest element cannot have an initializer.",
"A_parameter_property_may_not_be_declared_using_a_binding_pattern_1187" : "A parameter property may not be declared using a binding pattern.",
"Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement_1188" : "Only a single variable declaration is allowed in a 'for...of' statement.",
"The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer_1189" : "The variable declaration of a 'for...in' statement cannot have an initializer.",
"The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer_1190" : "The variable declaration of a 'for...of' statement cannot have an initializer.",
"An_import_declaration_cannot_have_modifiers_1191" : "An import declaration cannot have modifiers.",
"Module_0_has_no_default_export_1192" : "Module '{0}' has no default export.",
"An_export_declaration_cannot_have_modifiers_1193" : "An export declaration cannot have modifiers.",
"Export_declarations_are_not_permitted_in_a_namespace_1194" : "Export declarations are not permitted in a namespace.",
"Catch_clause_variable_cannot_have_a_type_annotation_1196" : "Catch clause variable cannot have a type annotation.",
"Catch_clause_variable_cannot_have_an_initializer_1197" : "Catch clause variable cannot have an initializer.",
"An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive_1198" : "An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive.",
"Unterminated_Unicode_escape_sequence_1199" : "Unterminated Unicode escape sequence.",
"Line_terminator_not_permitted_before_arrow_1200" : "Line terminator not permitted before arrow.",
"Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_1202" : "Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.",
"Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or__1203" : "Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead.",
"Cannot_re_export_a_type_when_the_isolatedModules_flag_is_provided_1205" : "Cannot re-export a type when the '--isolatedModules' flag is provided.",
"Decorators_are_not_valid_here_1206" : "Decorators are not valid here.",
"Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207" : "Decorators cannot be applied to multiple get/set accessors of the same name.",
"Cannot_compile_namespaces_when_the_isolatedModules_flag_is_provided_1208" : "Cannot compile namespaces when the '--isolatedModules' flag is provided.",
"Ambient_const_enums_are_not_allowed_when_the_isolatedModules_flag_is_provided_1209" : "Ambient const enums are not allowed when the '--isolatedModules' flag is provided.",
"Invalid_use_of_0_Class_definitions_are_automatically_in_strict_mode_1210" : "Invalid use of '{0}'. Class definitions are automatically in strict mode.",
"A_class_declaration_without_the_default_modifier_must_have_a_name_1211" : "A class declaration without the 'default' modifier must have a name.",
"Identifier_expected_0_is_a_reserved_word_in_strict_mode_1212" : "Identifier expected. '{0}' is a reserved word in strict mode.",
"Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_stric_1213" : "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode.",
"Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode_1214" : "Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode.",
"Invalid_use_of_0_Modules_are_automatically_in_strict_mode_1215" : "Invalid use of '{0}'. Modules are automatically in strict mode.",
"Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules_1216" : "Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules.",
"Export_assignment_is_not_supported_when_module_flag_is_system_1218" : "Export assignment is not supported when '--module' flag is 'system'.",
"Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_t_1219" : "Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.",
"Generators_are_only_available_when_targeting_ECMAScript_2015_or_higher_1220" : "Generators are only available when targeting ECMAScript 2015 or higher.",
"Generators_are_not_allowed_in_an_ambient_context_1221" : "Generators are not allowed in an ambient context.",
"An_overload_signature_cannot_be_declared_as_a_generator_1222" : "An overload signature cannot be declared as a generator.",
"_0_tag_already_specified_1223" : "'{0}' tag already specified.",
"Signature_0_must_be_a_type_predicate_1224" : "Signature '{0}' must be a type predicate.",
"Cannot_find_parameter_0_1225" : "Cannot find parameter '{0}'.",
"Type_predicate_0_is_not_assignable_to_1_1226" : "Type predicate '{0}' is not assignable to '{1}'.",
"Parameter_0_is_not_in_the_same_position_as_parameter_1_1227" : "Parameter '{0}' is not in the same position as parameter '{1}'.",
"A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods_1228" : "A type predicate is only allowed in return type position for functions and methods.",
"A_type_predicate_cannot_reference_a_rest_parameter_1229" : "A type predicate cannot reference a rest parameter.",
"A_type_predicate_cannot_reference_element_0_in_a_binding_pattern_1230" : "A type predicate cannot reference element '{0}' in a binding pattern.",
"An_export_assignment_can_only_be_used_in_a_module_1231" : "An export assignment can only be used in a module.",
"An_import_declaration_can_only_be_used_in_a_namespace_or_module_1232" : "An import declaration can only be used in a namespace or module.",
"An_export_declaration_can_only_be_used_in_a_module_1233" : "An export declaration can only be used in a module.",
"An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file_1234" : "An ambient module declaration is only allowed at the top level in a file.",
"A_namespace_declaration_is_only_allowed_in_a_namespace_or_module_1235" : "A namespace declaration is only allowed in a namespace or module.",
"The_return_type_of_a_property_decorator_function_must_be_either_void_or_any_1236" : "The return type of a property decorator function must be either 'void' or 'any'.",
"The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any_1237" : "The return type of a parameter decorator function must be either 'void' or 'any'.",
"Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression_1238" : "Unable to resolve signature of class decorator when called as an expression.",
"Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression_1239" : "Unable to resolve signature of parameter decorator when called as an expression.",
"Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression_1240" : "Unable to resolve signature of property decorator when called as an expression.",
"Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression_1241" : "Unable to resolve signature of method decorator when called as an expression.",
"abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration_1242" : "'abstract' modifier can only appear on a class, method, or property declaration.",
"_0_modifier_cannot_be_used_with_1_modifier_1243" : "'{0}' modifier cannot be used with '{1}' modifier.",
"Abstract_methods_can_only_appear_within_an_abstract_class_1244" : "Abstract methods can only appear within an abstract class.",
"Method_0_cannot_have_an_implementation_because_it_is_marked_abstract_1245" : "Method '{0}' cannot have an implementation because it is marked abstract.",
"An_interface_property_cannot_have_an_initializer_1246" : "An interface property cannot have an initializer.",
"A_type_literal_property_cannot_have_an_initializer_1247" : "A type literal property cannot have an initializer.",
"A_class_member_cannot_have_the_0_keyword_1248" : "A class member cannot have the '{0}' keyword.",
"A_decorator_can_only_decorate_a_method_implementation_not_an_overload_1249" : "A decorator can only decorate a method implementation, not an overload.",
"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_1250" : "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'.",
"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_d_1251" : "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode.",
"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_1252" : "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.",
"_0_tag_cannot_be_used_independently_as_a_top_level_JSDoc_tag_1253" : "'{0}' tag cannot be used independently as a top level JSDoc tag.",
"A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_1254" : "A 'const' initializer in an ambient context must be a string or numeric literal.",
"A_definite_assignment_assertion_is_not_permitted_in_this_context_1255" : "A definite assignment assertion '!' is not permitted in this context.",
"with_statements_are_not_allowed_in_an_async_function_block_1300" : "'with' statements are not allowed in an async function block.",
"await_expression_is_only_allowed_within_an_async_function_1308" : "'await' expression is only allowed within an async function.",
"can_only_be_used_in_an_object_literal_property_inside_a_destructuring_assignment_1312" : "'=' can only be used in an object literal property inside a destructuring assignment.",
"The_body_of_an_if_statement_cannot_be_the_empty_statement_1313" : "The body of an 'if' statement cannot be the empty statement.",
"Global_module_exports_may_only_appear_in_module_files_1314" : "Global module exports may only appear in module files.",
"Global_module_exports_may_only_appear_in_declaration_files_1315" : "Global module exports may only appear in declaration files.",
"Global_module_exports_may_only_appear_at_top_level_1316" : "Global module exports may only appear at top level.",
"A_parameter_property_cannot_be_declared_using_a_rest_parameter_1317" : "A parameter property cannot be declared using a rest parameter.",
"An_abstract_accessor_cannot_have_an_implementation_1318" : "An abstract accessor cannot have an implementation.",
"A_default_export_can_only_be_used_in_an_ECMAScript_style_module_1319" : "A default export can only be used in an ECMAScript-style module.",
"Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member_1320" : "Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member.",
"Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_cal_1321" : "Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member.",
"Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_con_1322" : "Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member.",
"Dynamic_import_cannot_be_used_when_targeting_ECMAScript_2015_modules_1323" : "Dynamic import cannot be used when targeting ECMAScript 2015 modules.",
"Dynamic_import_must_have_one_specifier_as_an_argument_1324" : "Dynamic import must have one specifier as an argument.",
"Specifier_of_dynamic_import_cannot_be_spread_element_1325" : "Specifier of dynamic import cannot be spread element.",
"Dynamic_import_cannot_have_type_arguments_1326" : "Dynamic import cannot have type arguments",
"String_literal_with_double_quotes_expected_1327" : "String literal with double quotes expected.",
"Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_li_1328" : "Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.",
"_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write__1329" : "'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?",
"A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly_1330" : "A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'.",
"A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly_1331" : "A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'.",
"A_variable_whose_type_is_a_unique_symbol_type_must_be_const_1332" : "A variable whose type is a 'unique symbol' type must be 'const'.",
"unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name_1333" : "'unique symbol' types may not be used on a variable declaration with a binding name.",
"unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement_1334" : "'unique symbol' types are only allowed on variables in a variable statement.",
"unique_symbol_types_are_not_allowed_here_1335" : "'unique symbol' types are not allowed here.",
"An_index_signature_parameter_type_cannot_be_a_type_alias_Consider_writing_0_Colon_1_Colon_2_instead_1336" : "An index signature parameter type cannot be a type alias. Consider writing '[{0}: {1}]: {2}' instead.",
"An_index_signature_parameter_type_cannot_be_a_union_type_Consider_using_a_mapped_object_type_instead_1337" : "An index signature parameter type cannot be a union type. Consider using a mapped object type instead.",
"infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type_1338" : "'infer' declarations are only permitted in the 'extends' clause of a conditional type.",
"Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here_1339" : "Module '{0}' does not refer to a value, but is used as a value here.",
"Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_1340" : "Module '{0}' does not refer to a type, but is used as a type here.",
"Type_arguments_cannot_be_used_here_1342" : "Type arguments cannot be used here.",
"The_import_meta_meta_property_is_only_allowed_using_ESNext_for_the_target_and_module_compiler_option_1343" : "The 'import.meta' meta-property is only allowed using 'ESNext' for the 'target' and 'module' compiler options.",
"Duplicate_identifier_0_2300" : "Duplicate identifier '{0}'.",
"Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor_2301" : "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.",
"Static_members_cannot_reference_class_type_parameters_2302" : "Static members cannot reference class type parameters.",
"Circular_definition_of_import_alias_0_2303" : "Circular definition of import alias '{0}'.",
"Cannot_find_name_0_2304" : "Cannot find name '{0}'.",
"Module_0_has_no_exported_member_1_2305" : "Module '{0}' has no exported member '{1}'.",
"File_0_is_not_a_module_2306" : "File '{0}' is not a module.",
"Cannot_find_module_0_2307" : "Cannot find module '{0}'.",
"Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambig_2308" : "Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity.",
"An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements_2309" : "An export assignment cannot be used in a module with other exported elements.",
"Type_0_recursively_references_itself_as_a_base_type_2310" : "Type '{0}' recursively references itself as a base type.",
"A_class_may_only_extend_another_class_2311" : "A class may only extend another class.",
"An_interface_may_only_extend_a_class_or_another_interface_2312" : "An interface may only extend a class or another interface.",
"Type_parameter_0_has_a_circular_constraint_2313" : "Type parameter '{0}' has a circular constraint.",
"Generic_type_0_requires_1_type_argument_s_2314" : "Generic type '{0}' requires {1} type argument(s).",
"Type_0_is_not_generic_2315" : "Type '{0}' is not generic.",
"Global_type_0_must_be_a_class_or_interface_type_2316" : "Global type '{0}' must be a class or interface type.",
"Global_type_0_must_have_1_type_parameter_s_2317" : "Global type '{0}' must have {1} type parameter(s).",
"Cannot_find_global_type_0_2318" : "Cannot find global type '{0}'.",
"Named_property_0_of_types_1_and_2_are_not_identical_2319" : "Named property '{0}' of types '{1}' and '{2}' are not identical.",
"Interface_0_cannot_simultaneously_extend_types_1_and_2_2320" : "Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'.",
"Excessive_stack_depth_comparing_types_0_and_1_2321" : "Excessive stack depth comparing types '{0}' and '{1}'.",
"Type_0_is_not_assignable_to_type_1_2322" : "Type '{0}' is not assignable to type '{1}'.",
"Cannot_redeclare_exported_variable_0_2323" : "Cannot redeclare exported variable '{0}'.",
"Property_0_is_missing_in_type_1_2324" : "Property '{0}' is missing in type '{1}'.",
"Property_0_is_private_in_type_1_but_not_in_type_2_2325" : "Property '{0}' is private in type '{1}' but not in type '{2}'.",
"Types_of_property_0_are_incompatible_2326" : "Types of property '{0}' are incompatible.",
"Property_0_is_optional_in_type_1_but_required_in_type_2_2327" : "Property '{0}' is optional in type '{1}' but required in type '{2}'.",
"Types_of_parameters_0_and_1_are_incompatible_2328" : "Types of parameters '{0}' and '{1}' are incompatible.",
"Index_signature_is_missing_in_type_0_2329" : "Index signature is missing in type '{0}'.",
"Index_signatures_are_incompatible_2330" : "Index signatures are incompatible.",
"this_cannot_be_referenced_in_a_module_or_namespace_body_2331" : "'this' cannot be referenced in a module or namespace body.",
"this_cannot_be_referenced_in_current_location_2332" : "'this' cannot be referenced in current location.",
"this_cannot_be_referenced_in_constructor_arguments_2333" : "'this' cannot be referenced in constructor arguments.",
"this_cannot_be_referenced_in_a_static_property_initializer_2334" : "'this' cannot be referenced in a static property initializer.",
"super_can_only_be_referenced_in_a_derived_class_2335" : "'super' can only be referenced in a derived class.",
"super_cannot_be_referenced_in_constructor_arguments_2336" : "'super' cannot be referenced in constructor arguments.",
"Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors_2337" : "Super calls are not permitted outside constructors or in nested functions inside constructors.",
"super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_der_2338" : "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class.",
"Property_0_does_not_exist_on_type_1_2339" : "Property '{0}' does not exist on type '{1}'.",
"Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword_2340" : "Only public and protected methods of the base class are accessible via the 'super' keyword.",
"Property_0_is_private_and_only_accessible_within_class_1_2341" : "Property '{0}' is private and only accessible within class '{1}'.",
"An_index_expression_argument_must_be_of_type_string_number_symbol_or_any_2342" : "An index expression argument must be of type 'string', 'number', 'symbol', or 'any'.",
"This_syntax_requires_an_imported_helper_named_1_but_module_0_has_no_exported_member_1_2343" : "This syntax requires an imported helper named '{1}', but module '{0}' has no exported member '{1}'.",
"Type_0_does_not_satisfy_the_constraint_1_2344" : "Type '{0}' does not satisfy the constraint '{1}'.",
"Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_2345" : "Argument of type '{0}' is not assignable to parameter of type '{1}'.",
"Call_target_does_not_contain_any_signatures_2346" : "Call target does not contain any signatures.",
"Untyped_function_calls_may_not_accept_type_arguments_2347" : "Untyped function calls may not accept type arguments.",
"Value_of_type_0_is_not_callable_Did_you_mean_to_include_new_2348" : "Value of type '{0}' is not callable. Did you mean to include 'new'?",
"Cannot_invoke_an_expression_whose_type_lacks_a_call_signature_Type_0_has_no_compatible_call_signatur_2349" : "Cannot invoke an expression whose type lacks a call signature. Type '{0}' has no compatible call signatures.",
"Only_a_void_function_can_be_called_with_the_new_keyword_2350" : "Only a void function can be called with the 'new' keyword.",
"Cannot_use_new_with_an_expression_whose_type_lacks_a_call_or_construct_signature_2351" : "Cannot use 'new' with an expression whose type lacks a call or construct signature.",
"Type_0_cannot_be_converted_to_type_1_2352" : "Type '{0}' cannot be converted to type '{1}'.",
"Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1_2353" : "Object literal may only specify known properties, and '{0}' does not exist in type '{1}'.",
"This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found_2354" : "This syntax requires an imported helper but module '{0}' cannot be found.",
"A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value_2355" : "A function whose declared type is neither 'void' nor 'any' must return a value.",
"An_arithmetic_operand_must_be_of_type_any_number_or_an_enum_type_2356" : "An arithmetic operand must be of type 'any', 'number' or an enum type.",
"The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access_2357" : "The operand of an increment or decrement operator must be a variable or a property access.",
"The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_paramete_2358" : "The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.",
"The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_F_2359" : "The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type.",
"The_left_hand_side_of_an_in_expression_must_be_of_type_any_string_number_or_symbol_2360" : "The left-hand side of an 'in' expression must be of type 'any', 'string', 'number', or 'symbol'.",
"The_right_hand_side_of_an_in_expression_must_be_of_type_any_an_object_type_or_a_type_parameter_2361" : "The right-hand side of an 'in' expression must be of type 'any', an object type or a type parameter.",
"The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_or_an_enum_type_2362" : "The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.",
"The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_or_an_enum_type_2363" : "The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.",
"The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access_2364" : "The left-hand side of an assignment expression must be a variable or a property access.",
"Operator_0_cannot_be_applied_to_types_1_and_2_2365" : "Operator '{0}' cannot be applied to types '{1}' and '{2}'.",
"Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined_2366" : "Function lacks ending return statement and return type does not include 'undefined'.",
"Type_parameter_name_cannot_be_0_2368" : "Type parameter name cannot be '{0}'.",
"A_parameter_property_is_only_allowed_in_a_constructor_implementation_2369" : "A parameter property is only allowed in a constructor implementation.",
"A_rest_parameter_must_be_of_an_array_type_2370" : "A rest parameter must be of an array type.",
"A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation_2371" : "A parameter initializer is only allowed in a function or constructor implementation.",
"Parameter_0_cannot_be_referenced_in_its_initializer_2372" : "Parameter '{0}' cannot be referenced in its initializer.",
"Initializer_of_parameter_0_cannot_reference_identifier_1_declared_after_it_2373" : "Initializer of parameter '{0}' cannot reference identifier '{1}' declared after it.",
"Duplicate_string_index_signature_2374" : "Duplicate string index signature.",
"Duplicate_number_index_signature_2375" : "Duplicate number index signature.",
"A_super_call_must_be_the_first_statement_in_the_constructor_when_a_class_contains_initialized_proper_2376" : "A 'super' call must be the first statement in the constructor when a class contains initialized properties or has parameter properties.",
"Constructors_for_derived_classes_must_contain_a_super_call_2377" : "Constructors for derived classes must contain a 'super' call.",
"A_get_accessor_must_return_a_value_2378" : "A 'get' accessor must return a value.",
"Getter_and_setter_accessors_do_not_agree_in_visibility_2379" : "Getter and setter accessors do not agree in visibility.",
"get_and_set_accessor_must_have_the_same_type_2380" : "'get' and 'set' accessor must have the same type.",
"A_signature_with_an_implementation_cannot_use_a_string_literal_type_2381" : "A signature with an implementation cannot use a string literal type.",
"Specialized_overload_signature_is_not_assignable_to_any_non_specialized_signature_2382" : "Specialized overload signature is not assignable to any non-specialized signature.",
"Overload_signatures_must_all_be_exported_or_non_exported_2383" : "Overload signatures must all be exported or non-exported.",
"Overload_signatures_must_all_be_ambient_or_non_ambient_2384" : "Overload signatures must all be ambient or non-ambient.",
"Overload_signatures_must_all_be_public_private_or_protected_2385" : "Overload signatures must all be public, private or protected.",
"Overload_signatures_must_all_be_optional_or_required_2386" : "Overload signatures must all be optional or required.",
"Function_overload_must_be_static_2387" : "Function overload must be static.",
"Function_overload_must_not_be_static_2388" : "Function overload must not be static.",
"Function_implementation_name_must_be_0_2389" : "Function implementation name must be '{0}'.",
"Constructor_implementation_is_missing_2390" : "Constructor implementation is missing.",
"Function_implementation_is_missing_or_not_immediately_following_the_declaration_2391" : "Function implementation is missing or not immediately following the declaration.",
"Multiple_constructor_implementations_are_not_allowed_2392" : "Multiple constructor implementations are not allowed.",
"Duplicate_function_implementation_2393" : "Duplicate function implementation.",
"Overload_signature_is_not_compatible_with_function_implementation_2394" : "Overload signature is not compatible with function implementation.",
"Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local_2395" : "Individual declarations in merged declaration '{0}' must be all exported or all local.",
"Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters_2396" : "Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters.",
"Declaration_name_conflicts_with_built_in_global_identifier_0_2397" : "Declaration name conflicts with built-in global identifier '{0}'.",
"Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference_2399" : "Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.",
"Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference_2400" : "Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference.",
"Duplicate_identifier_super_Compiler_uses_super_to_capture_base_class_reference_2401" : "Duplicate identifier '_super'. Compiler uses '_super' to capture base class reference.",
"Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference_2402" : "Expression resolves to '_super' that compiler uses to capture base class reference.",
"Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_t_2403" : "Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'.",
"The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation_2404" : "The left-hand side of a 'for...in' statement cannot use a type annotation.",
"The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any_2405" : "The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.",
"The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access_2406" : "The left-hand side of a 'for...in' statement must be a variable or a property access.",
"The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_2407" : "The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'.",
"Setters_cannot_return_a_value_2408" : "Setters cannot return a value.",
"Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class_2409" : "Return type of constructor signature must be assignable to the instance type of the class.",
"The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any_2410" : "The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.",
"Property_0_of_type_1_is_not_assignable_to_string_index_type_2_2411" : "Property '{0}' of type '{1}' is not assignable to string index type '{2}'.",
"Property_0_of_type_1_is_not_assignable_to_numeric_index_type_2_2412" : "Property '{0}' of type '{1}' is not assignable to numeric index type '{2}'.",
"Numeric_index_type_0_is_not_assignable_to_string_index_type_1_2413" : "Numeric index type '{0}' is not assignable to string index type '{1}'.",
"Class_name_cannot_be_0_2414" : "Class name cannot be '{0}'.",
"Class_0_incorrectly_extends_base_class_1_2415" : "Class '{0}' incorrectly extends base class '{1}'.",
"Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2_2416" : "Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'.",
"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417" : "Class static side '{0}' incorrectly extends base class static side '{1}'.",
"Class_0_incorrectly_implements_interface_1_2420" : "Class '{0}' incorrectly implements interface '{1}'.",
"A_class_may_only_implement_another_class_or_interface_2422" : "A class may only implement another class or interface.",
"Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_access_2423" : "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor.",
"Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_proper_2424" : "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member property.",
"Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_functi_2425" : "Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function.",
"Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_functi_2426" : "Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function.",
"Interface_name_cannot_be_0_2427" : "Interface name cannot be '{0}'.",
"All_declarations_of_0_must_have_identical_type_parameters_2428" : "All declarations of '{0}' must have identical type parameters.",
"Interface_0_incorrectly_extends_interface_1_2430" : "Interface '{0}' incorrectly extends interface '{1}'.",
"Enum_name_cannot_be_0_2431" : "Enum name cannot be '{0}'.",
"In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enu_2432" : "In an enum with multiple declarations, only one declaration can omit an initializer fo