├── .editorconfig ├── .gitignore ├── .npmignore ├── README.md ├── cli.js ├── docs ├── angular-testing-library │ ├── output.json │ └── testing-library │ │ ├── build-queries.md │ │ ├── config.md │ │ ├── configure.md │ │ ├── create-event.md │ │ ├── find-all-by-alt-text.md │ │ ├── find-all-by-display-value.md │ │ ├── find-all-by-label-text.md │ │ ├── find-all-by-placeholder-text.md │ │ ├── find-all-by-role.md │ │ ├── find-all-by-test-id.md │ │ ├── find-all-by-text.md │ │ ├── find-all-by-title.md │ │ ├── find-by-alt-text.md │ │ ├── find-by-display-value.md │ │ ├── find-by-label-text.md │ │ ├── find-by-placeholder-text.md │ │ ├── find-by-role.md │ │ ├── find-by-test-id.md │ │ ├── find-by-text.md │ │ ├── find-by-title.md │ │ ├── fire-event.md │ │ ├── get-all-by-alt-text.md │ │ ├── get-all-by-display-value.md │ │ ├── get-all-by-label-text.md │ │ ├── get-all-by-placeholder-text.md │ │ ├── get-all-by-role.md │ │ ├── get-all-by-test-id.md │ │ ├── get-all-by-text.md │ │ ├── get-all-by-title.md │ │ ├── get-by-alt-text.md │ │ ├── get-by-display-value.md │ │ ├── get-by-label-text.md │ │ ├── get-by-placeholder-text.md │ │ ├── get-by-role.md │ │ ├── get-by-test-id.md │ │ ├── get-by-text.md │ │ ├── get-by-title.md │ │ ├── get-config.md │ │ ├── get-default-normalizer.md │ │ ├── get-element-error.md │ │ ├── get-node-text.md │ │ ├── get-queries-for-element.md │ │ ├── get-roles.md │ │ ├── is-inaccessible.md │ │ ├── log-dom.md │ │ ├── log-roles.md │ │ ├── pretty-dom.md │ │ ├── query-all-by-alt-text.md │ │ ├── query-all-by-attribute.md │ │ ├── query-all-by-display-value.md │ │ ├── query-all-by-label-text.md │ │ ├── query-all-by-placeholder-text.md │ │ ├── query-all-by-role.md │ │ ├── query-all-by-test-id.md │ │ ├── query-all-by-text.md │ │ ├── query-all-by-title.md │ │ ├── query-by-alt-text.md │ │ ├── query-by-attribute.md │ │ ├── query-by-display-value.md │ │ ├── query-by-label-text.md │ │ ├── query-by-placeholder-text.md │ │ ├── query-by-role.md │ │ ├── query-by-test-id.md │ │ ├── query-by-text.md │ │ ├── query-by-title.md │ │ ├── render-component-options.md │ │ ├── render-directive-options.md │ │ ├── render-result-queries.md │ │ ├── render-result.md │ │ ├── render.md │ │ ├── screen.md │ │ ├── wait-for-element-to-be-removed.md │ │ ├── wait-for.md │ │ └── within.md ├── angular │ ├── common │ │ ├── class-declaration │ │ │ ├── async-pipe.md │ │ │ ├── common-module.md │ │ │ ├── currency-pipe.md │ │ │ ├── date-pipe.md │ │ │ ├── decimal-pipe.md │ │ │ ├── hash-location-strategy.md │ │ │ ├── i18n-plural-pipe.md │ │ │ ├── i18n-select-pipe.md │ │ │ ├── json-pipe.md │ │ │ ├── key-value-pipe.md │ │ │ ├── location-strategy.md │ │ │ ├── location.md │ │ │ ├── lower-case-pipe.md │ │ │ ├── ng-class.md │ │ │ ├── ng-component-outlet.md │ │ │ ├── ng-for-of-context.md │ │ │ ├── ng-for-of.md │ │ │ ├── ng-if-context.md │ │ │ ├── ng-if.md │ │ │ ├── ng-locale-localization.md │ │ │ ├── ng-localization.md │ │ │ ├── ng-plural-case.md │ │ │ ├── ng-plural.md │ │ │ ├── ng-style.md │ │ │ ├── ng-switch-case.md │ │ │ ├── ng-switch-default.md │ │ │ ├── ng-switch.md │ │ │ ├── ng-template-outlet.md │ │ │ ├── path-location-strategy.md │ │ │ ├── percent-pipe.md │ │ │ ├── platform-location.md │ │ │ ├── slice-pipe.md │ │ │ ├── title-case-pipe.md │ │ │ ├── upper-case-pipe.md │ │ │ ├── viewport-scroller.md │ │ │ ├── ɵbrowser-platform-location.md │ │ │ ├── ɵdom-adapter.md │ │ │ └── ɵnull-viewport-scroller.md │ │ ├── enum-declaration │ │ │ ├── form-style.md │ │ │ ├── format-width.md │ │ │ ├── number-format-style.md │ │ │ ├── number-symbol.md │ │ │ ├── plural.md │ │ │ ├── translation-width.md │ │ │ └── week-day.md │ │ ├── function-declaration │ │ │ ├── format-currency.md │ │ │ ├── format-date.md │ │ │ ├── format-number.md │ │ │ ├── format-percent.md │ │ │ ├── get-currency-symbol.md │ │ │ ├── get-locale-currency-code.md │ │ │ ├── get-locale-currency-name.md │ │ │ ├── get-locale-currency-symbol.md │ │ │ ├── get-locale-date-format.md │ │ │ ├── get-locale-date-time-format.md │ │ │ ├── get-locale-day-names.md │ │ │ ├── get-locale-day-periods.md │ │ │ ├── get-locale-direction.md │ │ │ ├── get-locale-era-names.md │ │ │ ├── get-locale-extra-day-period-rules.md │ │ │ ├── get-locale-extra-day-periods.md │ │ │ ├── get-locale-first-day-of-week.md │ │ │ ├── get-locale-id.md │ │ │ ├── get-locale-month-names.md │ │ │ ├── get-locale-number-format.md │ │ │ ├── get-locale-number-symbol.md │ │ │ ├── get-locale-time-format.md │ │ │ ├── get-locale-week-end-range.md │ │ │ ├── get-number-of-currency-digits.md │ │ │ ├── is-platform-browser.md │ │ │ ├── is-platform-server.md │ │ │ ├── is-platform-worker-app.md │ │ │ ├── is-platform-worker-ui.md │ │ │ ├── register-locale-data.md │ │ │ ├── ɵget-dom.md │ │ │ ├── ɵparse-cookie-value.md │ │ │ └── ɵset-root-dom-adapter.md │ │ ├── interface-declaration │ │ │ ├── key-value.md │ │ │ ├── location-change-event.md │ │ │ ├── location-change-listener.md │ │ │ └── pop-state-event.md │ │ ├── type-alias-declaration │ │ │ └── time.md │ │ └── variable-declaration │ │ │ ├── app-base-href.md │ │ │ ├── document.md │ │ │ ├── get-locale-plural-case.md │ │ │ ├── location-initialized.md │ │ │ ├── version.md │ │ │ ├── ɵplatform-browser-id.md │ │ │ ├── ɵplatform-server-id.md │ │ │ ├── ɵplatform-worker-app-id.md │ │ │ └── ɵplatform-worker-ui-id.md │ ├── compiler │ │ ├── class-declaration │ │ │ ├── -parse-ast.md │ │ │ ├── absolute-source-span.md │ │ │ ├── aot-compiler.md │ │ │ ├── aot-summary-resolver.md │ │ │ ├── array-type.md │ │ │ ├── assert-not-null.md │ │ │ ├── ast-memory-efficient-transformer.md │ │ │ ├── ast-path.md │ │ │ ├── ast-transformer.md │ │ │ ├── ast.md │ │ │ ├── astwith-name.md │ │ │ ├── astwith-source.md │ │ │ ├── attr-ast.md │ │ │ ├── attribute.md │ │ │ ├── binary-operator-expr.md │ │ │ ├── binary.md │ │ │ ├── binding-pipe.md │ │ │ ├── bound-directive-property-ast.md │ │ │ ├── bound-element-property-ast.md │ │ │ ├── bound-element-property.md │ │ │ ├── bound-event-ast.md │ │ │ ├── bound-text-ast.md │ │ │ ├── builtin-type.md │ │ │ ├── cast-expr.md │ │ │ ├── chain.md │ │ │ ├── class-field.md │ │ │ ├── class-method.md │ │ │ ├── class-stmt.md │ │ │ ├── comma-expr.md │ │ │ ├── comment-stmt.md │ │ │ ├── comment.md │ │ │ ├── compile-directive-metadata.md │ │ │ ├── compile-metadata-resolver.md │ │ │ ├── compile-ng-module-metadata.md │ │ │ ├── compile-pipe-metadata.md │ │ │ ├── compile-reflector.md │ │ │ ├── compile-shallow-module-metadata.md │ │ │ ├── compile-stylesheet-metadata.md │ │ │ ├── compile-template-metadata.md │ │ │ ├── compiled-stylesheet.md │ │ │ ├── compiler-config.md │ │ │ ├── conditional-expr.md │ │ │ ├── conditional.md │ │ │ ├── constant-pool.md │ │ │ ├── css-selector.md │ │ │ ├── declare-function-stmt.md │ │ │ ├── declare-var-stmt.md │ │ │ ├── directive-ast.md │ │ │ ├── directive-normalizer.md │ │ │ ├── directive-resolver.md │ │ │ ├── dom-element-schema-registry.md │ │ │ ├── element-ast.md │ │ │ ├── element-schema-registry.md │ │ │ ├── element.md │ │ │ ├── embedded-template-ast.md │ │ │ ├── emitter-visitor-context.md │ │ │ ├── empty-expr.md │ │ │ ├── expansion-case.md │ │ │ ├── expansion.md │ │ │ ├── expression-binding.md │ │ │ ├── expression-statement.md │ │ │ ├── expression-type.md │ │ │ ├── expression.md │ │ │ ├── external-expr.md │ │ │ ├── external-reference.md │ │ │ ├── extractor.md │ │ │ ├── function-call.md │ │ │ ├── function-expr.md │ │ │ ├── generated-file.md │ │ │ ├── html-parser.md │ │ │ ├── html-tag-definition.md │ │ │ ├── i18-nhtml-parser.md │ │ │ ├── identifiers.md │ │ │ ├── if-stmt.md │ │ │ ├── implicit-receiver.md │ │ │ ├── instantiate-expr.md │ │ │ ├── interpolation-config.md │ │ │ ├── interpolation.md │ │ │ ├── invoke-function-expr.md │ │ │ ├── invoke-method-expr.md │ │ │ ├── ivy-parser.md │ │ │ ├── jit-compiler.md │ │ │ ├── jit-evaluator.md │ │ │ ├── jit-summary-resolver.md │ │ │ ├── jsdoc-comment-stmt.md │ │ │ ├── keyed-read.md │ │ │ ├── keyed-write.md │ │ │ ├── lexer.md │ │ │ ├── literal-array-expr.md │ │ │ ├── literal-array.md │ │ │ ├── literal-expr.md │ │ │ ├── literal-map-expr.md │ │ │ ├── literal-map.md │ │ │ ├── literal-primitive.md │ │ │ ├── map-type.md │ │ │ ├── message-bundle.md │ │ │ ├── method-call.md │ │ │ ├── ng-content-ast.md │ │ │ ├── ng-module-compiler.md │ │ │ ├── ng-module-resolver.md │ │ │ ├── node-with-i18n.md │ │ │ ├── non-null-assert.md │ │ │ ├── not-expr.md │ │ │ ├── null-template-visitor.md │ │ │ ├── parse-error.md │ │ │ ├── parse-location.md │ │ │ ├── parse-source-file.md │ │ │ ├── parse-source-span.md │ │ │ ├── parse-span.md │ │ │ ├── parse-tree-result.md │ │ │ ├── parsed-event.md │ │ │ ├── parsed-property.md │ │ │ ├── parsed-variable.md │ │ │ ├── parser-error.md │ │ │ ├── parser.md │ │ │ ├── pipe-resolver.md │ │ │ ├── prefix-not.md │ │ │ ├── property-read.md │ │ │ ├── property-write.md │ │ │ ├── provider-ast.md │ │ │ ├── provider-meta.md │ │ │ ├── quote.md │ │ │ ├── r3-bound-target.md │ │ │ ├── r3-identifiers.md │ │ │ ├── r3-target-binder.md │ │ │ ├── read-key-expr.md │ │ │ ├── read-prop-expr.md │ │ │ ├── read-var-expr.md │ │ │ ├── recursive-ast-visitor.md │ │ │ ├── recursive-template-ast-visitor.md │ │ │ ├── recursive-visitor.md │ │ │ ├── reference-ast.md │ │ │ ├── resolved-static-symbol.md │ │ │ ├── resource-loader.md │ │ │ ├── return-statement.md │ │ │ ├── safe-method-call.md │ │ │ ├── safe-property-read.md │ │ │ ├── selector-context.md │ │ │ ├── selector-list-context.md │ │ │ ├── selector-matcher.md │ │ │ ├── serializer.md │ │ │ ├── split-interpolation.md │ │ │ ├── statement.md │ │ │ ├── static-reflector.md │ │ │ ├── static-symbol-cache.md │ │ │ ├── static-symbol-resolver.md │ │ │ ├── static-symbol.md │ │ │ ├── style-compiler.md │ │ │ ├── styles-compile-dependency.md │ │ │ ├── summary-resolver.md │ │ │ ├── template-binding-parse-result.md │ │ │ ├── template-parse-error.md │ │ │ ├── template-parse-result.md │ │ │ ├── template-parser.md │ │ │ ├── text-ast.md │ │ │ ├── text.md │ │ │ ├── throw-stmt.md │ │ │ ├── tmpl-ast-bound-attribute.md │ │ │ ├── tmpl-ast-bound-event.md │ │ │ ├── tmpl-ast-bound-text.md │ │ │ ├── tmpl-ast-content.md │ │ │ ├── tmpl-ast-element.md │ │ │ ├── tmpl-ast-recursive-visitor.md │ │ │ ├── tmpl-ast-reference.md │ │ │ ├── tmpl-ast-template.md │ │ │ ├── tmpl-ast-text-attribute.md │ │ │ ├── tmpl-ast-text.md │ │ │ ├── tmpl-ast-variable.md │ │ │ ├── token.md │ │ │ ├── transitive-compile-ng-module-metadata.md │ │ │ ├── tree-error.md │ │ │ ├── try-catch-stmt.md │ │ │ ├── type-script-emitter.md │ │ │ ├── type.md │ │ │ ├── typeof-expr.md │ │ │ ├── variable-ast.md │ │ │ ├── variable-binding.md │ │ │ ├── version.md │ │ │ ├── view-compiler.md │ │ │ ├── wrapped-node-expr.md │ │ │ ├── write-key-expr.md │ │ │ ├── write-prop-expr.md │ │ │ ├── write-var-expr.md │ │ │ ├── xliff.md │ │ │ ├── xliff2.md │ │ │ ├── xmb.md │ │ │ ├── xml-parser.md │ │ │ └── xtb.md │ │ ├── enum-declaration │ │ │ ├── binary-operator.md │ │ │ ├── binding-type.md │ │ │ ├── builtin-method.md │ │ │ ├── builtin-type-name.md │ │ │ ├── builtin-var.md │ │ │ ├── compile-summary-kind.md │ │ │ ├── parse-error-level.md │ │ │ ├── parsed-event-type.md │ │ │ ├── parsed-property-type.md │ │ │ ├── property-binding-type.md │ │ │ ├── provider-ast-type.md │ │ │ ├── r3-factory-target.md │ │ │ ├── r3-resolved-dependency-type.md │ │ │ ├── stmt-modifier.md │ │ │ ├── tag-content-type.md │ │ │ └── token-type.md │ │ ├── function-declaration │ │ │ ├── analyze-and-validate-ng-modules.md │ │ │ ├── analyze-file-for-injectables.md │ │ │ ├── analyze-file.md │ │ │ ├── analyze-ng-modules.md │ │ │ ├── collect-external-references.md │ │ │ ├── compile-component-from-metadata.md │ │ │ ├── compile-directive-from-metadata.md │ │ │ ├── compile-factory-function.md │ │ │ ├── compile-injectable.md │ │ │ ├── compile-injector.md │ │ │ ├── compile-ng-module.md │ │ │ ├── compile-pipe-from-metadata.md │ │ │ ├── component-factory-name.md │ │ │ ├── compute-msg-id.md │ │ │ ├── create-aot-compiler.md │ │ │ ├── create-aot-url-resolver.md │ │ │ ├── create-element-css-selector.md │ │ │ ├── create-lowered-symbol.md │ │ │ ├── create-offline-compile-url-resolver.md │ │ │ ├── create-url-resolver-without-package-prefix.md │ │ │ ├── debug-output-ast-as-type-script.md │ │ │ ├── find-node.md │ │ │ ├── flatten.md │ │ │ ├── formatted-error.md │ │ │ ├── get-html-tag-definition.md │ │ │ ├── get-ns-prefix.md │ │ │ ├── get-parse-errors.md │ │ │ ├── get-url-scheme.md │ │ │ ├── host-view-class-name.md │ │ │ ├── identifier-module-url.md │ │ │ ├── identifier-name.md │ │ │ ├── is-empty-expression.md │ │ │ ├── is-formatted-error.md │ │ │ ├── is-identifier.md │ │ │ ├── is-lowered-symbol.md │ │ │ ├── is-ng-container.md │ │ │ ├── is-ng-content.md │ │ │ ├── is-ng-template.md │ │ │ ├── is-quote.md │ │ │ ├── is-syntax-error.md │ │ │ ├── literal-map.md │ │ │ ├── make-binding-parser.md │ │ │ ├── merge-analyzed-files.md │ │ │ ├── merge-ns-and-name.md │ │ │ ├── ng-module-jit-url.md │ │ │ ├── parse-host-bindings.md │ │ │ ├── parse-template.md │ │ │ ├── preserve-whitespaces-default.md │ │ │ ├── publish-facade.md │ │ │ ├── r3-jit-type-source-span.md │ │ │ ├── remove-summary-duplicates.md │ │ │ ├── renderer-type-name.md │ │ │ ├── sanitize-identifier.md │ │ │ ├── shared-stylesheet-jit-url.md │ │ │ ├── split-classes.md │ │ │ ├── split-ns-name.md │ │ │ ├── syntax-error.md │ │ │ ├── template-jit-url.md │ │ │ ├── template-source-url.md │ │ │ ├── template-visit-all.md │ │ │ ├── to-type-script.md │ │ │ ├── token-name.md │ │ │ ├── token-reference.md │ │ │ ├── type-source-span.md │ │ │ ├── unescape-identifier.md │ │ │ ├── unwrap-resolved-metadata.md │ │ │ ├── verify-host-bindings.md │ │ │ ├── view-class-name.md │ │ │ └── visit-all.md │ │ ├── interface-declaration │ │ │ ├── aot-compiler-host.md │ │ │ ├── aot-compiler-options.md │ │ │ ├── aot-summary-resolver-host.md │ │ │ ├── ast-visitor.md │ │ │ ├── bound-target.md │ │ │ ├── compile-di-dependency-metadata.md │ │ │ ├── compile-directive-summary.md │ │ │ ├── compile-entry-component-metadata.md │ │ │ ├── compile-factory-metadata.md │ │ │ ├── compile-identifier-metadata.md │ │ │ ├── compile-injectable-metadata.md │ │ │ ├── compile-ng-module-summary.md │ │ │ ├── compile-pipe-summary.md │ │ │ ├── compile-provider-metadata.md │ │ │ ├── compile-query-metadata.md │ │ │ ├── compile-template-summary.md │ │ │ ├── compile-token-metadata.md │ │ │ ├── compile-type-metadata.md │ │ │ ├── compile-type-summary.md │ │ │ ├── directive-meta.md │ │ │ ├── expression-visitor.md │ │ │ ├── extractor-host.md │ │ │ ├── formatted-message-chain.md │ │ │ ├── injectable-def.md │ │ │ ├── lazy-route.md │ │ │ ├── lexer-range.md │ │ │ ├── ng-analyze-modules-host.md │ │ │ ├── ng-analyzed-file-with-injectables.md │ │ │ ├── ng-analyzed-file.md │ │ │ ├── ng-analyzed-modules.md │ │ │ ├── node.md │ │ │ ├── parse-template-options.md │ │ │ ├── parsed-host-bindings.md │ │ │ ├── partial-module.md │ │ │ ├── position.md │ │ │ ├── prenormalized-template-metadata.md │ │ │ ├── proxy-class.md │ │ │ ├── query-match.md │ │ │ ├── r3-component-def.md │ │ │ ├── r3-component-metadata.md │ │ │ ├── r3-dependency-metadata.md │ │ │ ├── r3-directive-def.md │ │ │ ├── r3-directive-metadata.md │ │ │ ├── r3-host-metadata.md │ │ │ ├── r3-injectable-metadata.md │ │ │ ├── r3-injector-metadata.md │ │ │ ├── r3-ng-module-metadata.md │ │ │ ├── r3-pipe-metadata.md │ │ │ ├── r3-query-metadata.md │ │ │ ├── r3-reference.md │ │ │ ├── schema-metadata.md │ │ │ ├── statement-visitor.md │ │ │ ├── static-symbol-resolver-host.md │ │ │ ├── summary.md │ │ │ ├── tag-definition.md │ │ │ ├── target-binder.md │ │ │ ├── target.md │ │ │ ├── template-ast-visitor.md │ │ │ ├── template-ast.md │ │ │ ├── template-binding-identifier.md │ │ │ ├── tmpl-ast-node.md │ │ │ ├── type-visitor.md │ │ │ ├── url-resolver-ctor.md │ │ │ ├── url-resolver.md │ │ │ └── visitor.md │ │ ├── type-alias-declaration │ │ │ ├── error-collector.md │ │ │ ├── formatted-error.md │ │ │ ├── html-ast-path.md │ │ │ ├── literal-map-key.md │ │ │ ├── r3-factory-metadata.md │ │ │ ├── reference-filter.md │ │ │ ├── source-map.md │ │ │ ├── template-ast-path.md │ │ │ └── template-binding.md │ │ └── variable-declaration │ │ │ ├── content-attr.md │ │ │ ├── custom-elements-schema.md │ │ │ ├── default-interpolation-config.md │ │ │ ├── dynamic-type.md │ │ │ ├── eof.md │ │ │ ├── error-component-type.md │ │ │ ├── host-attr.md │ │ │ ├── named-entities.md │ │ │ ├── ngsp-unicode.md │ │ │ ├── no-errors-schema.md │ │ │ ├── none-type.md │ │ │ ├── string-type.md │ │ │ └── version.md │ ├── core │ │ ├── class-declaration │ │ │ ├── application-init-status.md │ │ │ ├── application-module.md │ │ │ ├── application-ref.md │ │ │ ├── change-detector-ref.md │ │ │ ├── compiler-factory.md │ │ │ ├── compiler.md │ │ │ ├── component-factory-resolver.md │ │ │ ├── component-factory.md │ │ │ ├── component-ref.md │ │ │ ├── debug-event-listener.md │ │ │ ├── default-iterable-differ.md │ │ │ ├── element-ref.md │ │ │ ├── embedded-view-ref.md │ │ │ ├── error-handler.md │ │ │ ├── injection-token.md │ │ │ ├── injector.md │ │ │ ├── iterable-differs.md │ │ │ ├── key-value-differs.md │ │ │ ├── module-with-component-factories.md │ │ │ ├── ng-module-factory-loader.md │ │ │ ├── ng-module-factory.md │ │ │ ├── ng-module-ref.md │ │ │ ├── ng-probe-token.md │ │ │ ├── ng-zone.md │ │ │ ├── platform-ref.md │ │ │ ├── query-list.md │ │ │ ├── reflective-injector.md │ │ │ ├── reflective-key.md │ │ │ ├── renderer-factory2.md │ │ │ ├── renderer2.md │ │ │ ├── resolved-reflective-factory.md │ │ │ ├── sanitizer.md │ │ │ ├── simple-change.md │ │ │ ├── system-js-ng-module-loader-config.md │ │ │ ├── system-js-ng-module-loader.md │ │ │ ├── template-ref.md │ │ │ ├── testability-registry.md │ │ │ ├── testability.md │ │ │ ├── version.md │ │ │ ├── view-container-ref.md │ │ │ ├── view-ref.md │ │ │ ├── wrapped-value.md │ │ │ ├── ɵcodegen-component-factory-resolver.md │ │ │ ├── ɵcomponent-factory.md │ │ │ ├── ɵconsole.md │ │ │ ├── ɵng-module-factory.md │ │ │ ├── ɵnoop-ng-zone.md │ │ │ ├── ɵreflection-capabilities.md │ │ │ ├── ɵrender3-component-factory.md │ │ │ ├── ɵrender3-component-ref.md │ │ │ └── ɵrender3-ng-module-ref.md │ │ ├── enum-declaration │ │ │ ├── change-detection-strategy.md │ │ │ ├── inject-flags.md │ │ │ ├── missing-translation-strategy.md │ │ │ ├── renderer-style-flags2.md │ │ │ ├── security-context.md │ │ │ ├── view-encapsulation.md │ │ │ ├── ɵargument-type.md │ │ │ ├── ɵattribute-marker.md │ │ │ ├── ɵbinding-flags.md │ │ │ ├── ɵbypass-type.md │ │ │ ├── ɵchange-detector-status.md │ │ │ ├── ɵcurrency-index.md │ │ │ ├── ɵdep-flags.md │ │ │ ├── ɵextra-locale-data-index.md │ │ │ ├── ɵlocale-data-index.md │ │ │ ├── ɵnode-flags.md │ │ │ ├── ɵplay-state.md │ │ │ ├── ɵquery-binding-type.md │ │ │ ├── ɵquery-value-type.md │ │ │ ├── ɵrender-flags.md │ │ │ └── ɵview-flags.md │ │ ├── function-declaration │ │ │ ├── as-native-elements.md │ │ │ ├── assert-platform.md │ │ │ ├── create-platform-factory.md │ │ │ ├── create-platform.md │ │ │ ├── destroy-platform.md │ │ │ ├── enable-prod-mode.md │ │ │ ├── forward-ref.md │ │ │ ├── get-platform.md │ │ │ ├── is-dev-mode.md │ │ │ ├── resolve-forward-ref.md │ │ │ ├── set-testability-getter.md │ │ │ ├── ɵ-sanitize-html.md │ │ │ ├── ɵ-sanitize-url.md │ │ │ ├── ɵallow-sanitization-bypass-and-throw.md │ │ │ ├── ɵand.md │ │ │ ├── ɵbypass-sanitization-trust-html.md │ │ │ ├── ɵbypass-sanitization-trust-resource-url.md │ │ │ ├── ɵbypass-sanitization-trust-script.md │ │ │ ├── ɵbypass-sanitization-trust-style.md │ │ │ ├── ɵbypass-sanitization-trust-url.md │ │ │ ├── ɵccf.md │ │ │ ├── ɵclear-overrides.md │ │ │ ├── ɵclear-resolution-of-component-resources-queue.md │ │ │ ├── ɵcmf.md │ │ │ ├── ɵcompile-component.md │ │ │ ├── ɵcompile-directive.md │ │ │ ├── ɵcompile-ng-module-defs.md │ │ │ ├── ɵcompile-ng-module-factory--post-r3--.md │ │ │ ├── ɵcompile-ng-module.md │ │ │ ├── ɵcompile-pipe.md │ │ │ ├── ɵcreate-injector.md │ │ │ ├── ɵcrt.md │ │ │ ├── ɵdetect-changes.md │ │ │ ├── ɵdev-mode-equal.md │ │ │ ├── ɵdid.md │ │ │ ├── ɵeld.md │ │ │ ├── ɵfind-locale-data.md │ │ │ ├── ɵflush-module-scoping-queue-as-much-as-possible.md │ │ │ ├── ɵget-component-view-definition-factory.md │ │ │ ├── ɵget-debug-node--post-r3--.md │ │ │ ├── ɵget-directives.md │ │ │ ├── ɵget-host-element.md │ │ │ ├── ɵget-injectable-def.md │ │ │ ├── ɵget-lcontext.md │ │ │ ├── ɵget-locale-currency-code.md │ │ │ ├── ɵget-locale-plural-case.md │ │ │ ├── ɵget-module-factory--post-r3--.md │ │ │ ├── ɵget-sanitization-bypass-type.md │ │ │ ├── ɵinit-services-if-needed.md │ │ │ ├── ɵinjector-impl--post-r3--.md │ │ │ ├── ɵinline-interpolate.md │ │ │ ├── ɵinterpolate.md │ │ │ ├── ɵis-bound-to-module--post-r3--.md │ │ │ ├── ɵis-default-change-detection-strategy.md │ │ │ ├── ɵis-list-like-iterable.md │ │ │ ├── ɵis-observable.md │ │ │ ├── ɵis-promise.md │ │ │ ├── ɵlifecycle-hooks-feature.md │ │ │ ├── ɵmake-decorator.md │ │ │ ├── ɵmark-dirty.md │ │ │ ├── ɵmod.md │ │ │ ├── ɵmpd.md │ │ │ ├── ɵncd.md │ │ │ ├── ɵnov.md │ │ │ ├── ɵoverride-component-view.md │ │ │ ├── ɵoverride-provider.md │ │ │ ├── ɵpad.md │ │ │ ├── ɵpatch-component-def-with-scope.md │ │ │ ├── ɵpid.md │ │ │ ├── ɵpod.md │ │ │ ├── ɵppd.md │ │ │ ├── ɵprd.md │ │ │ ├── ɵpublish-default-global-utils.md │ │ │ ├── ɵpublish-global-util.md │ │ │ ├── ɵqud.md │ │ │ ├── ɵregister-locale-data.md │ │ │ ├── ɵregister-module-factory.md │ │ │ ├── ɵregister-ng-module-type.md │ │ │ ├── ɵrender-component.md │ │ │ ├── ɵreset-compiled-components.md │ │ │ ├── ɵreset-jit-options.md │ │ │ ├── ɵresolve-component-resources.md │ │ │ ├── ɵset-class-metadata.md │ │ │ ├── ɵset-current-injector.md │ │ │ ├── ɵset-document.md │ │ │ ├── ɵset-locale-id.md │ │ │ ├── ɵstore.md │ │ │ ├── ɵstringify.md │ │ │ ├── ɵted.md │ │ │ ├── ɵtransitive-scopes-for.md │ │ │ ├── ɵunregister-locale-data.md │ │ │ ├── ɵunv.md │ │ │ ├── ɵunwrap-safe-value.md │ │ │ ├── ɵvid.md │ │ │ ├── ɵwhen-rendered.md │ │ │ ├── ɵɵadvance.md │ │ │ ├── ɵɵattribute-interpolate-v.md │ │ │ ├── ɵɵattribute-interpolate1.md │ │ │ ├── ɵɵattribute-interpolate2.md │ │ │ ├── ɵɵattribute-interpolate3.md │ │ │ ├── ɵɵattribute-interpolate4.md │ │ │ ├── ɵɵattribute-interpolate5.md │ │ │ ├── ɵɵattribute-interpolate6.md │ │ │ ├── ɵɵattribute-interpolate7.md │ │ │ ├── ɵɵattribute-interpolate8.md │ │ │ ├── ɵɵattribute.md │ │ │ ├── ɵɵclass-map-interpolate-v.md │ │ │ ├── ɵɵclass-map-interpolate1.md │ │ │ ├── ɵɵclass-map-interpolate2.md │ │ │ ├── ɵɵclass-map-interpolate3.md │ │ │ ├── ɵɵclass-map-interpolate4.md │ │ │ ├── ɵɵclass-map-interpolate5.md │ │ │ ├── ɵɵclass-map-interpolate6.md │ │ │ ├── ɵɵclass-map-interpolate7.md │ │ │ ├── ɵɵclass-map-interpolate8.md │ │ │ ├── ɵɵclass-map.md │ │ │ ├── ɵɵclass-prop.md │ │ │ ├── ɵɵcontent-query.md │ │ │ ├── ɵɵcopy-definition-feature.md │ │ │ ├── ɵɵdefine-component.md │ │ │ ├── ɵɵdefine-injectable.md │ │ │ ├── ɵɵdefine-injector.md │ │ │ ├── ɵɵdefine-ng-module.md │ │ │ ├── ɵɵdefine-pipe.md │ │ │ ├── ɵɵdirective-inject.md │ │ │ ├── ɵɵdisable-bindings.md │ │ │ ├── ɵɵelement-container-end.md │ │ │ ├── ɵɵelement-container-start.md │ │ │ ├── ɵɵelement-container.md │ │ │ ├── ɵɵelement-end.md │ │ │ ├── ɵɵelement-start.md │ │ │ ├── ɵɵelement.md │ │ │ ├── ɵɵenable-bindings.md │ │ │ ├── ɵɵget-current-view.md │ │ │ ├── ɵɵget-factory-of.md │ │ │ ├── ɵɵget-inherited-factory.md │ │ │ ├── ɵɵhost-property.md │ │ │ ├── ɵɵi18n-apply.md │ │ │ ├── ɵɵi18n-attributes.md │ │ │ ├── ɵɵi18n-end.md │ │ │ ├── ɵɵi18n-exp.md │ │ │ ├── ɵɵi18n-postprocess.md │ │ │ ├── ɵɵi18n-start.md │ │ │ ├── ɵɵi18n.md │ │ │ ├── ɵɵinherit-definition-feature.md │ │ │ ├── ɵɵinject-attribute.md │ │ │ ├── ɵɵinject-pipe-change-detector-ref.md │ │ │ ├── ɵɵinject.md │ │ │ ├── ɵɵinvalid-factory-dep.md │ │ │ ├── ɵɵinvalid-factory.md │ │ │ ├── ɵɵlistener.md │ │ │ ├── ɵɵload-query.md │ │ │ ├── ɵɵnamespace-html.md │ │ │ ├── ɵɵnamespace-math-ml.md │ │ │ ├── ɵɵnamespace-svg.md │ │ │ ├── ɵɵnext-context.md │ │ │ ├── ɵɵng-on-changes-feature.md │ │ │ ├── ɵɵpipe-bind-v.md │ │ │ ├── ɵɵpipe-bind1.md │ │ │ ├── ɵɵpipe-bind2.md │ │ │ ├── ɵɵpipe-bind3.md │ │ │ ├── ɵɵpipe-bind4.md │ │ │ ├── ɵɵpipe.md │ │ │ ├── ɵɵprojection-def.md │ │ │ ├── ɵɵprojection.md │ │ │ ├── ɵɵproperty-interpolate-v.md │ │ │ ├── ɵɵproperty-interpolate.md │ │ │ ├── ɵɵproperty-interpolate1.md │ │ │ ├── ɵɵproperty-interpolate2.md │ │ │ ├── ɵɵproperty-interpolate3.md │ │ │ ├── ɵɵproperty-interpolate4.md │ │ │ ├── ɵɵproperty-interpolate5.md │ │ │ ├── ɵɵproperty-interpolate6.md │ │ │ ├── ɵɵproperty-interpolate7.md │ │ │ ├── ɵɵproperty-interpolate8.md │ │ │ ├── ɵɵproperty.md │ │ │ ├── ɵɵproviders-feature.md │ │ │ ├── ɵɵpure-function-v.md │ │ │ ├── ɵɵpure-function0.md │ │ │ ├── ɵɵpure-function1.md │ │ │ ├── ɵɵpure-function2.md │ │ │ ├── ɵɵpure-function3.md │ │ │ ├── ɵɵpure-function4.md │ │ │ ├── ɵɵpure-function5.md │ │ │ ├── ɵɵpure-function6.md │ │ │ ├── ɵɵpure-function7.md │ │ │ ├── ɵɵpure-function8.md │ │ │ ├── ɵɵquery-refresh.md │ │ │ ├── ɵɵreference.md │ │ │ ├── ɵɵresolve-body.md │ │ │ ├── ɵɵresolve-document.md │ │ │ ├── ɵɵresolve-window.md │ │ │ ├── ɵɵrestore-view.md │ │ │ ├── ɵɵsanitize-html.md │ │ │ ├── ɵɵsanitize-resource-url.md │ │ │ ├── ɵɵsanitize-script.md │ │ │ ├── ɵɵsanitize-style.md │ │ │ ├── ɵɵsanitize-url-or-resource-url.md │ │ │ ├── ɵɵsanitize-url.md │ │ │ ├── ɵɵselect.md │ │ │ ├── ɵɵset-component-scope.md │ │ │ ├── ɵɵset-ng-module-scope.md │ │ │ ├── ɵɵstatic-content-query.md │ │ │ ├── ɵɵstatic-view-query.md │ │ │ ├── ɵɵstyle-map-interpolate-v.md │ │ │ ├── ɵɵstyle-map-interpolate1.md │ │ │ ├── ɵɵstyle-map-interpolate2.md │ │ │ ├── ɵɵstyle-map-interpolate3.md │ │ │ ├── ɵɵstyle-map-interpolate4.md │ │ │ ├── ɵɵstyle-map-interpolate5.md │ │ │ ├── ɵɵstyle-map-interpolate6.md │ │ │ ├── ɵɵstyle-map-interpolate7.md │ │ │ ├── ɵɵstyle-map-interpolate8.md │ │ │ ├── ɵɵstyle-map.md │ │ │ ├── ɵɵstyle-prop-interpolate-v.md │ │ │ ├── ɵɵstyle-prop-interpolate1.md │ │ │ ├── ɵɵstyle-prop-interpolate2.md │ │ │ ├── ɵɵstyle-prop-interpolate3.md │ │ │ ├── ɵɵstyle-prop-interpolate4.md │ │ │ ├── ɵɵstyle-prop-interpolate5.md │ │ │ ├── ɵɵstyle-prop-interpolate6.md │ │ │ ├── ɵɵstyle-prop-interpolate7.md │ │ │ ├── ɵɵstyle-prop-interpolate8.md │ │ │ ├── ɵɵstyle-prop.md │ │ │ ├── ɵɵsynthetic-host-listener.md │ │ │ ├── ɵɵsynthetic-host-property.md │ │ │ ├── ɵɵtemplate-ref-extractor.md │ │ │ ├── ɵɵtemplate.md │ │ │ ├── ɵɵtext-interpolate-v.md │ │ │ ├── ɵɵtext-interpolate.md │ │ │ ├── ɵɵtext-interpolate1.md │ │ │ ├── ɵɵtext-interpolate2.md │ │ │ ├── ɵɵtext-interpolate3.md │ │ │ ├── ɵɵtext-interpolate4.md │ │ │ ├── ɵɵtext-interpolate5.md │ │ │ ├── ɵɵtext-interpolate6.md │ │ │ ├── ɵɵtext-interpolate7.md │ │ │ ├── ɵɵtext-interpolate8.md │ │ │ ├── ɵɵtext.md │ │ │ └── ɵɵview-query.md │ │ ├── interface-declaration │ │ │ ├── abstract-type.md │ │ │ ├── after-content-checked.md │ │ │ ├── after-content-init.md │ │ │ ├── after-view-checked.md │ │ │ ├── after-view-init.md │ │ │ ├── attribute-decorator.md │ │ │ ├── attribute.md │ │ │ ├── class-provider.md │ │ │ ├── class-sans-provider.md │ │ │ ├── collection-change-record.md │ │ │ ├── component-decorator.md │ │ │ ├── component.md │ │ │ ├── constructor-provider.md │ │ │ ├── constructor-sans-provider.md │ │ │ ├── content-child-decorator.md │ │ │ ├── content-children-decorator.md │ │ │ ├── debug-element.md │ │ │ ├── debug-node.md │ │ │ ├── directive-decorator.md │ │ │ ├── directive.md │ │ │ ├── do-bootstrap.md │ │ │ ├── do-check.md │ │ │ ├── event-emitter.md │ │ │ ├── existing-provider.md │ │ │ ├── existing-sans-provider.md │ │ │ ├── factory-provider.md │ │ │ ├── factory-sans-provider.md │ │ │ ├── forward-ref-fn.md │ │ │ ├── get-testability.md │ │ │ ├── host-binding-decorator.md │ │ │ ├── host-binding.md │ │ │ ├── host-decorator.md │ │ │ ├── host-listener-decorator.md │ │ │ ├── host-listener.md │ │ │ ├── host.md │ │ │ ├── inject-decorator.md │ │ │ ├── inject.md │ │ │ ├── injectable-decorator.md │ │ │ ├── injectable-type.md │ │ │ ├── injectable.md │ │ │ ├── injector-type.md │ │ │ ├── input-decorator.md │ │ │ ├── input.md │ │ │ ├── iterable-change-record.md │ │ │ ├── iterable-changes.md │ │ │ ├── iterable-differ-factory.md │ │ │ ├── iterable-differ.md │ │ │ ├── key-value-change-record.md │ │ │ ├── key-value-changes.md │ │ │ ├── key-value-differ-factory.md │ │ │ ├── key-value-differ.md │ │ │ ├── module-with-providers.md │ │ │ ├── ng-module-decorator.md │ │ │ ├── ng-module.md │ │ │ ├── on-changes.md │ │ │ ├── on-destroy.md │ │ │ ├── on-init.md │ │ │ ├── optional-decorator.md │ │ │ ├── optional.md │ │ │ ├── output-decorator.md │ │ │ ├── output.md │ │ │ ├── pipe-decorator.md │ │ │ ├── pipe-transform.md │ │ │ ├── pipe.md │ │ │ ├── predicate.md │ │ │ ├── query.md │ │ │ ├── renderer-type2.md │ │ │ ├── resolved-reflective-provider.md │ │ │ ├── schema-metadata.md │ │ │ ├── self-decorator.md │ │ │ ├── self.md │ │ │ ├── simple-changes.md │ │ │ ├── skip-self-decorator.md │ │ │ ├── skip-self.md │ │ │ ├── static-class-provider.md │ │ │ ├── static-class-sans-provider.md │ │ │ ├── track-by-function.md │ │ │ ├── type-decorator.md │ │ │ ├── type-provider.md │ │ │ ├── value-provider.md │ │ │ ├── value-sans-provider.md │ │ │ ├── view-child-decorator.md │ │ │ ├── view-children-decorator.md │ │ │ ├── ɵcomponent-def.md │ │ │ ├── ɵcomponent-type.md │ │ │ ├── ɵdirective-def.md │ │ │ ├── ɵdirective-type.md │ │ │ ├── ɵlcontext.md │ │ │ ├── ɵng-module-def.md │ │ │ ├── ɵng-module-transitive-scopes.md │ │ │ ├── ɵng-module-type.md │ │ │ ├── ɵno-change.md │ │ │ ├── ɵpipe-def.md │ │ │ ├── ɵplayer-factory.md │ │ │ ├── ɵplayer-handler.md │ │ │ ├── ɵplayer.md │ │ │ ├── ɵsafe-html.md │ │ │ ├── ɵsafe-resource-url.md │ │ │ ├── ɵsafe-script.md │ │ │ ├── ɵsafe-style.md │ │ │ ├── ɵsafe-url.md │ │ │ ├── ɵsafe-value.md │ │ │ ├── ɵview-definition.md │ │ │ ├── ɵɵinjectable-def.md │ │ │ └── ɵɵinjector-def.md │ │ ├── type-alias-declaration │ │ │ ├── compiler-options.md │ │ │ ├── content-child.md │ │ │ ├── content-children.md │ │ │ ├── injectable-provider.md │ │ │ ├── ng-iterable.md │ │ │ ├── provider.md │ │ │ ├── static-provider.md │ │ │ ├── view-child.md │ │ │ ├── view-children.md │ │ │ ├── ɵcss-selector-list.md │ │ │ ├── ɵgetter-fn.md │ │ │ ├── ɵmethod-fn.md │ │ │ ├── ɵsetter-fn.md │ │ │ ├── ɵɵcomponent-def-with-meta.md │ │ │ ├── ɵɵdirective-def-with-meta.md │ │ │ ├── ɵɵfactory-def.md │ │ │ ├── ɵɵng-module-def-with-meta.md │ │ │ └── ɵɵpipe-def-with-meta.md │ │ └── variable-declaration │ │ │ ├── analyze-for-entry-components.md │ │ │ ├── app-bootstrap-listener.md │ │ │ ├── app-id.md │ │ │ ├── app-initializer.md │ │ │ ├── compiler-options.md │ │ │ ├── custom-elements-schema.md │ │ │ ├── default-currency-code.md │ │ │ ├── define-injectable.md │ │ │ ├── get-debug-node.md │ │ │ ├── get-module-factory.md │ │ │ ├── inject.md │ │ │ ├── injector.md │ │ │ ├── locale-id.md │ │ │ ├── no-errors-schema.md │ │ │ ├── package-root-url.md │ │ │ ├── platform-core.md │ │ │ ├── platform-id.md │ │ │ ├── platform-initializer.md │ │ │ ├── translations-format.md │ │ │ ├── translations.md │ │ │ ├── type.md │ │ │ ├── version.md │ │ │ ├── ɵallow-multiple-platforms.md │ │ │ ├── ɵapp-id-random-provider.md │ │ │ ├── ɵcompiler-compile-module-and-all-components-async--post-r3--.md │ │ │ ├── ɵcompiler-compile-module-and-all-components-sync--post-r3--.md │ │ │ ├── ɵcompiler-compile-module-async--post-r3--.md │ │ │ ├── ɵcompiler-compile-module-sync--post-r3--.md │ │ │ ├── ɵdefault-iterable-differs.md │ │ │ ├── ɵdefault-key-value-differs.md │ │ │ ├── ɵdefault-locale-id.md │ │ │ ├── ɵempty-array.md │ │ │ ├── ɵempty-map.md │ │ │ ├── ɵget-debug-node-r2.md │ │ │ ├── ɵglobal.md │ │ │ ├── ɵinjector-scope.md │ │ │ ├── ɵivy-enabled.md │ │ │ ├── ɵng-comp-def.md │ │ │ ├── ɵng-dir-def.md │ │ │ ├── ɵng-element-id.md │ │ │ ├── ɵng-inj-def.md │ │ │ ├── ɵng-mod-def.md │ │ │ ├── ɵng-pipe-def.md │ │ │ ├── ɵng-prov-def.md │ │ │ ├── ɵnot-found-check-only-element-injector.md │ │ │ ├── ɵswitch-change-detector-ref-factory--post-r3--.md │ │ │ ├── ɵswitch-compile-component--post-r3--.md │ │ │ ├── ɵswitch-compile-directive--post-r3--.md │ │ │ ├── ɵswitch-compile-injectable--post-r3--.md │ │ │ ├── ɵswitch-compile-ngmodule--post-r3--.md │ │ │ ├── ɵswitch-compile-pipe--post-r3--.md │ │ │ ├── ɵswitch-element-ref-factory--post-r3--.md │ │ │ ├── ɵswitch-ivy-enabled--post-r3--.md │ │ │ ├── ɵswitch-renderer2-factory--post-r3--.md │ │ │ ├── ɵswitch-template-ref-factory--post-r3--.md │ │ │ ├── ɵswitch-view-container-ref-factory--post-r3--.md │ │ │ └── ɵɵdefine-directive.md │ ├── elements │ │ ├── class-declaration │ │ │ └── ng-element.md │ │ ├── function-declaration │ │ │ └── create-custom-element.md │ │ ├── interface-declaration │ │ │ ├── ng-element-config.md │ │ │ ├── ng-element-constructor.md │ │ │ ├── ng-element-strategy-event.md │ │ │ ├── ng-element-strategy-factory.md │ │ │ └── ng-element-strategy.md │ │ ├── type-alias-declaration │ │ │ └── with-properties.md │ │ └── variable-declaration │ │ │ └── version.md │ ├── forms │ │ ├── class-declaration │ │ │ ├── abstract-control-directive.md │ │ │ ├── abstract-control.md │ │ │ ├── abstract-form-group-directive.md │ │ │ ├── checkbox-control-value-accessor.md │ │ │ ├── checkbox-required-validator.md │ │ │ ├── control-container.md │ │ │ ├── default-value-accessor.md │ │ │ ├── email-validator.md │ │ │ ├── form-array-name.md │ │ │ ├── form-array.md │ │ │ ├── form-builder.md │ │ │ ├── form-control-directive.md │ │ │ ├── form-control-name.md │ │ │ ├── form-control.md │ │ │ ├── form-group-directive.md │ │ │ ├── form-group-name.md │ │ │ ├── form-group.md │ │ │ ├── forms-module.md │ │ │ ├── max-length-validator.md │ │ │ ├── min-length-validator.md │ │ │ ├── ng-control-status-group.md │ │ │ ├── ng-control-status.md │ │ │ ├── ng-control.md │ │ │ ├── ng-form.md │ │ │ ├── ng-model-group.md │ │ │ ├── ng-model.md │ │ │ ├── ng-select-option.md │ │ │ ├── number-value-accessor.md │ │ │ ├── pattern-validator.md │ │ │ ├── radio-control-value-accessor.md │ │ │ ├── range-value-accessor.md │ │ │ ├── reactive-forms-module.md │ │ │ ├── required-validator.md │ │ │ ├── select-control-value-accessor.md │ │ │ ├── select-multiple-control-value-accessor.md │ │ │ ├── validators.md │ │ │ ├── ɵinternal-forms-shared-module.md │ │ │ ├── ɵng-no-validate.md │ │ │ └── ɵng-select-multiple-option.md │ │ ├── interface-declaration │ │ │ ├── abstract-control-options.md │ │ │ ├── async-validator-fn.md │ │ │ ├── async-validator.md │ │ │ ├── control-value-accessor.md │ │ │ ├── form.md │ │ │ ├── validator-fn.md │ │ │ └── validator.md │ │ ├── type-alias-declaration │ │ │ └── validation-errors.md │ │ └── variable-declaration │ │ │ ├── composition-buffer-mode.md │ │ │ ├── ng-async-validators.md │ │ │ ├── ng-validators.md │ │ │ ├── ng-value-accessor.md │ │ │ └── version.md │ ├── language-service │ │ ├── class-declaration │ │ │ └── type-script-service-host.md │ │ ├── function-declaration │ │ │ ├── create-language-service-from-typescript.md │ │ │ ├── create-language-service.md │ │ │ ├── create.md │ │ │ └── get-external-files.md │ │ ├── interface-declaration │ │ │ ├── declaration.md │ │ │ ├── diagnostic.md │ │ │ ├── language-service-host.md │ │ │ ├── span.md │ │ │ └── template-source.md │ │ └── type-alias-declaration │ │ │ ├── definition.md │ │ │ └── language-service.md │ ├── localize │ │ ├── class-declaration │ │ │ └── ɵmissing-translation-error.md │ │ ├── function-declaration │ │ │ ├── clear-translations.md │ │ │ ├── load-translations.md │ │ │ ├── ɵfind-end-of-block.md │ │ │ ├── ɵis-missing-translation-error.md │ │ │ ├── ɵmake-parsed-translation.md │ │ │ ├── ɵmake-template-object.md │ │ │ ├── ɵparse-message.md │ │ │ ├── ɵparse-metadata.md │ │ │ ├── ɵparse-translation.md │ │ │ ├── ɵsplit-block.md │ │ │ └── ɵtranslate.md │ │ ├── interface-declaration │ │ │ ├── ɵparsed-message.md │ │ │ ├── ɵparsed-translation.md │ │ │ └── ɵsource-location.md │ │ └── type-alias-declaration │ │ │ ├── ɵmessage-id.md │ │ │ ├── ɵparsed-translations.md │ │ │ ├── ɵsource-message.md │ │ │ └── ɵtarget-message.md │ ├── output.json │ ├── platform-browser-dynamic │ │ ├── class-declaration │ │ │ ├── jit-compiler-factory.md │ │ │ ├── ɵcompiler-impl.md │ │ │ └── ɵresource-loader-impl.md │ │ └── variable-declaration │ │ │ ├── platform-browser-dynamic.md │ │ │ ├── resource-cache-provider.md │ │ │ ├── version.md │ │ │ ├── ɵcompiler-providers--post-r3--.md │ │ │ ├── ɵinternal-browser-dynamic-platform-providers.md │ │ │ └── ɵplatform-core-dynamic.md │ ├── platform-browser │ │ ├── class-declaration │ │ │ ├── browser-module.md │ │ │ ├── browser-transfer-state-module.md │ │ │ ├── by.md │ │ │ ├── dom-sanitizer.md │ │ │ ├── event-manager.md │ │ │ ├── hammer-gesture-config.md │ │ │ ├── hammer-module.md │ │ │ ├── meta.md │ │ │ ├── title.md │ │ │ ├── transfer-state.md │ │ │ ├── ɵbrowser-dom-adapter.md │ │ │ ├── ɵbrowser-get-testability.md │ │ │ ├── ɵdom-events-plugin.md │ │ │ ├── ɵdom-renderer-factory2.md │ │ │ ├── ɵdom-sanitizer-impl.md │ │ │ ├── ɵdom-shared-styles-host.md │ │ │ ├── ɵhammer-gestures-plugin.md │ │ │ ├── ɵkey-events-plugin.md │ │ │ └── ɵshared-styles-host.md │ │ ├── function-declaration │ │ │ ├── disable-debug-tools.md │ │ │ ├── enable-debug-tools.md │ │ │ ├── make-state-key.md │ │ │ ├── ɵescape-html.md │ │ │ ├── ɵflatten-styles.md │ │ │ ├── ɵinit-dom-adapter.md │ │ │ ├── ɵshim-content-attribute.md │ │ │ └── ɵshim-host-attribute.md │ │ ├── interface-declaration │ │ │ ├── safe-html.md │ │ │ ├── safe-resource-url.md │ │ │ ├── safe-script.md │ │ │ ├── safe-style.md │ │ │ ├── safe-url.md │ │ │ └── safe-value.md │ │ ├── type-alias-declaration │ │ │ ├── hammer-loader.md │ │ │ ├── meta-definition.md │ │ │ └── state-key.md │ │ └── variable-declaration │ │ │ ├── event-manager-plugins.md │ │ │ ├── hammer-gesture-config.md │ │ │ ├── hammer-loader.md │ │ │ ├── platform-browser.md │ │ │ ├── version.md │ │ │ ├── ɵbrowser-sanitization-providers--post-r3--.md │ │ │ ├── ɵbrowser-sanitization-providers.md │ │ │ ├── ɵelement-probe-providers--post-r3--.md │ │ │ ├── ɵelement-probe-providers.md │ │ │ ├── ɵhammer-providers--post-r3--.md │ │ │ ├── ɵinternal-browser-platform-providers.md │ │ │ ├── ɵnamespace-uris.md │ │ │ └── ɵtransition-id.md │ ├── router │ │ ├── class-declaration │ │ │ ├── activated-route-snapshot.md │ │ │ ├── activated-route.md │ │ │ ├── activation-end.md │ │ │ ├── activation-start.md │ │ │ ├── child-activation-end.md │ │ │ ├── child-activation-start.md │ │ │ ├── children-outlet-contexts.md │ │ │ ├── default-url-serializer.md │ │ │ ├── guards-check-end.md │ │ │ ├── guards-check-start.md │ │ │ ├── navigation-cancel.md │ │ │ ├── navigation-end.md │ │ │ ├── navigation-error.md │ │ │ ├── navigation-start.md │ │ │ ├── no-preloading.md │ │ │ ├── outlet-context.md │ │ │ ├── preload-all-modules.md │ │ │ ├── preloading-strategy.md │ │ │ ├── resolve-end.md │ │ │ ├── resolve-start.md │ │ │ ├── route-config-load-end.md │ │ │ ├── route-config-load-start.md │ │ │ ├── route-reuse-strategy.md │ │ │ ├── router-event.md │ │ │ ├── router-link-active.md │ │ │ ├── router-link-with-href.md │ │ │ ├── router-link.md │ │ │ ├── router-module.md │ │ │ ├── router-outlet.md │ │ │ ├── router-preloader.md │ │ │ ├── router-state-snapshot.md │ │ │ ├── router-state.md │ │ │ ├── router.md │ │ │ ├── routes-recognized.md │ │ │ ├── scroll.md │ │ │ ├── url-handling-strategy.md │ │ │ ├── url-segment-group.md │ │ │ ├── url-segment.md │ │ │ ├── url-serializer.md │ │ │ ├── url-tree.md │ │ │ └── ɵempty-outlet-component.md │ │ ├── function-declaration │ │ │ ├── convert-to-param-map.md │ │ │ ├── provide-routes.md │ │ │ └── ɵflatten.md │ │ ├── interface-declaration │ │ │ ├── can-activate-child.md │ │ │ ├── can-activate.md │ │ │ ├── can-deactivate.md │ │ │ ├── can-load.md │ │ │ ├── extra-options.md │ │ │ ├── navigation-extras.md │ │ │ ├── param-map.md │ │ │ ├── resolve.md │ │ │ └── route.md │ │ ├── type-alias-declaration │ │ │ ├── data.md │ │ │ ├── deprecated-load-children.md │ │ │ ├── detached-route-handle.md │ │ │ ├── event.md │ │ │ ├── initial-navigation.md │ │ │ ├── load-children-callback.md │ │ │ ├── load-children.md │ │ │ ├── navigation.md │ │ │ ├── params.md │ │ │ ├── query-params-handling.md │ │ │ ├── resolve-data.md │ │ │ ├── routes.md │ │ │ ├── run-guards-and-resolvers.md │ │ │ ├── url-match-result.md │ │ │ └── url-matcher.md │ │ └── variable-declaration │ │ │ ├── primary-outlet.md │ │ │ ├── router-configuration.md │ │ │ ├── router-initializer.md │ │ │ ├── routes.md │ │ │ ├── version.md │ │ │ └── ɵrouter-providers.md │ └── service-worker │ │ ├── class-declaration │ │ ├── service-worker-module.md │ │ ├── sw-push.md │ │ ├── sw-registration-options.md │ │ └── sw-update.md │ │ └── interface-declaration │ │ ├── update-activated-event.md │ │ └── update-available-event.md ├── msw │ ├── output.json │ └── src │ │ ├── async-response-resolver-return-type.md │ │ ├── default-context.md │ │ ├── graph-qlmocked-context.md │ │ ├── graph-qlmocked-request.md │ │ ├── graph-qlrequest-payload.md │ │ ├── graph-qlresponse-resolver.md │ │ ├── graphql-context.md │ │ ├── graphql.md │ │ ├── match-request-url.md │ │ ├── mocked-request.md │ │ ├── mocked-response.md │ │ ├── parsed-rest-request.md │ │ ├── request-handler.md │ │ ├── request-params.md │ │ ├── request-query.md │ │ ├── response-resolver-return-type.md │ │ ├── response-resolver.md │ │ ├── response-transformer.md │ │ ├── response.md │ │ ├── rest-context.md │ │ ├── rest.md │ │ ├── restmethods.md │ │ └── setup-worker.md ├── ngrx │ ├── component-store │ │ ├── class-declaration │ │ │ └── component-store.md │ │ ├── interface-declaration │ │ │ └── select-config.md │ │ └── variable-declaration │ │ │ └── initial-state-token.md │ ├── component │ │ └── class-declaration │ │ │ ├── let-directive.md │ │ │ ├── push-pipe.md │ │ │ └── reactive-component-module.md │ ├── data │ │ ├── class-declaration │ │ │ ├── change-set-item-factory.md │ │ │ ├── clear-collections.md │ │ │ ├── correlation-id-generator.md │ │ │ ├── data-service-error.md │ │ │ ├── default-data-service-config.md │ │ │ ├── default-data-service-factory.md │ │ │ ├── default-data-service.md │ │ │ ├── default-http-url-generator.md │ │ │ ├── default-logger.md │ │ │ ├── default-persistence-result-handler.md │ │ │ ├── default-pluralizer.md │ │ │ ├── entity-action-factory.md │ │ │ ├── entity-action-guard.md │ │ │ ├── entity-cache-data-service.md │ │ │ ├── entity-cache-dispatcher.md │ │ │ ├── entity-cache-effects.md │ │ │ ├── entity-cache-reducer-factory.md │ │ │ ├── entity-change-tracker-base.md │ │ │ ├── entity-collection-creator.md │ │ │ ├── entity-collection-reducer-factory.md │ │ │ ├── entity-collection-reducer-methods-factory.md │ │ │ ├── entity-collection-reducer-methods.md │ │ │ ├── entity-collection-reducer-registry.md │ │ │ ├── entity-collection-service-base.md │ │ │ ├── entity-collection-service-elements-factory.md │ │ │ ├── entity-collection-service-factory.md │ │ │ ├── entity-data-module-without-effects.md │ │ │ ├── entity-data-module.md │ │ │ ├── entity-data-service.md │ │ │ ├── entity-definition-service.md │ │ │ ├── entity-dispatcher-base.md │ │ │ ├── entity-dispatcher-default-options.md │ │ │ ├── entity-dispatcher-factory.md │ │ │ ├── entity-effects.md │ │ │ ├── entity-http-resource-urls.md │ │ │ ├── entity-selectors$factory.md │ │ │ ├── entity-selectors-factory.md │ │ │ ├── entity-services-base.md │ │ │ ├── entity-services-elements.md │ │ │ ├── entity-services.md │ │ │ ├── http-url-generator.md │ │ │ ├── load-collections.md │ │ │ ├── logger.md │ │ │ ├── merge-query-set.md │ │ │ ├── persistance-canceled.md │ │ │ ├── persistence-result-handler.md │ │ │ ├── pluralizer.md │ │ │ ├── save-entities-cancel.md │ │ │ ├── save-entities-canceled.md │ │ │ ├── save-entities-error.md │ │ │ ├── save-entities-success.md │ │ │ ├── save-entities.md │ │ │ └── set-entity-cache.md │ │ ├── enum-declaration │ │ │ ├── change-set-operation.md │ │ │ ├── change-type.md │ │ │ ├── entity-cache-action.md │ │ │ ├── entity-op.md │ │ │ └── merge-strategy.md │ │ ├── function-declaration │ │ │ ├── create-empty-entity-collection.md │ │ │ ├── create-entity-cache-selector.md │ │ │ ├── create-entity-definition.md │ │ │ ├── default-select-id.md │ │ │ ├── exclude-empty-change-set-items.md │ │ │ ├── flatten-args.md │ │ │ ├── get-guid-comb.md │ │ │ ├── get-guid.md │ │ │ ├── guid-comparer.md │ │ │ ├── make-error-op.md │ │ │ ├── make-success-op.md │ │ │ ├── normalize-root.md │ │ │ ├── of-entity-op.md │ │ │ ├── of-entity-type.md │ │ │ ├── props-filter-fn-factory.md │ │ │ └── to-update-factory.md │ │ ├── interface-declaration │ │ │ ├── change-set-add.md │ │ │ ├── change-set-delete.md │ │ │ ├── change-set-update.md │ │ │ ├── change-set-upsert.md │ │ │ ├── change-set.md │ │ │ ├── change-state.md │ │ │ ├── collection-selectors.md │ │ │ ├── entity-action-data-service-error.md │ │ │ ├── entity-action-options.md │ │ │ ├── entity-action-payload.md │ │ │ ├── entity-action.md │ │ │ ├── entity-cache-commands.md │ │ │ ├── entity-cache-query-set.md │ │ │ ├── entity-cache.md │ │ │ ├── entity-change-tracker.md │ │ │ ├── entity-collection-data-service.md │ │ │ ├── entity-collection-reducer-method-map.md │ │ │ ├── entity-collection-reducers.md │ │ │ ├── entity-collection-service-elements.md │ │ │ ├── entity-collection-service-map.md │ │ │ ├── entity-collection-service.md │ │ │ ├── entity-collection.md │ │ │ ├── entity-commands.md │ │ │ ├── entity-data-module-config.md │ │ │ ├── entity-definition.md │ │ │ ├── entity-definitions.md │ │ │ ├── entity-dispatcher.md │ │ │ ├── entity-metadata-map.md │ │ │ ├── entity-metadata.md │ │ │ ├── entity-plural-names.md │ │ │ ├── entity-selectors$.md │ │ │ ├── entity-selectors.md │ │ │ ├── entity-server-commands.md │ │ │ ├── http-resource-urls.md │ │ │ ├── query-params.md │ │ │ ├── request-data.md │ │ │ └── update-response-data.md │ │ ├── type-alias-declaration │ │ │ ├── change-set-item.md │ │ │ ├── change-state-map.md │ │ │ ├── entity-cache-selector.md │ │ │ ├── entity-collection-reducer.md │ │ │ ├── entity-filter-fn.md │ │ │ └── http-methods.md │ │ └── variable-declaration │ │ │ ├── change-set-item-factory.md │ │ │ ├── entity-cache-meta-reducers.md │ │ │ ├── entity-cache-name-token.md │ │ │ ├── entity-cache-name.md │ │ │ ├── entity-cache-selector-provider.md │ │ │ ├── entity-cache-selector-token.md │ │ │ ├── entity-collection-meta-reducers.md │ │ │ ├── entity-metadata-token.md │ │ │ ├── initial-entity-cache-state.md │ │ │ ├── op-error.md │ │ │ ├── op-success.md │ │ │ ├── persist-ops.md │ │ │ └── plural-names-token.md │ ├── effects │ │ ├── class-declaration │ │ │ ├── actions.md │ │ │ ├── effect-sources.md │ │ │ ├── effects-feature-module.md │ │ │ ├── effects-module.md │ │ │ ├── effects-root-module.md │ │ │ └── effects-runner.md │ │ ├── function-declaration │ │ │ ├── act.md │ │ │ ├── create-effect.md │ │ │ ├── default-effects-error-handler.md │ │ │ ├── effect.md │ │ │ ├── get-effects-metadata.md │ │ │ ├── merge-effects.md │ │ │ └── of-type.md │ │ ├── interface-declaration │ │ │ ├── create-effect-metadata.md │ │ │ ├── effect-config.md │ │ │ ├── effect-notification.md │ │ │ ├── on-identify-effects.md │ │ │ ├── on-init-effects.md │ │ │ └── on-run-effects.md │ │ ├── type-alias-declaration │ │ │ ├── effects-error-handler.md │ │ │ └── effects-metadata.md │ │ └── variable-declaration │ │ │ ├── effects-error-handler.md │ │ │ ├── root-effects-init.md │ │ │ └── user-provided-effects.md │ ├── entity │ │ ├── class-declaration │ │ │ └── dictionary.md │ │ ├── function-declaration │ │ │ └── create-entity-adapter.md │ │ ├── interface-declaration │ │ │ ├── entity-adapter.md │ │ │ └── entity-state.md │ │ └── type-alias-declaration │ │ │ ├── comparer.md │ │ │ ├── entity-map-one.md │ │ │ ├── entity-map.md │ │ │ ├── id-selector.md │ │ │ ├── predicate.md │ │ │ └── update.md │ ├── output.json │ ├── router-store │ │ ├── class-declaration │ │ │ ├── default-router-state-serializer.md │ │ │ ├── minimal-router-state-serializer.md │ │ │ ├── router-state-serializer.md │ │ │ └── store-router-connecting-module.md │ │ ├── enum-declaration │ │ │ ├── navigation-action-timing.md │ │ │ └── router-state.md │ │ ├── function-declaration │ │ │ ├── get-selectors.md │ │ │ └── router-reducer.md │ │ ├── interface-declaration │ │ │ ├── base-router-store-state.md │ │ │ ├── minimal-activated-route-snapshot.md │ │ │ ├── minimal-router-state-snapshot.md │ │ │ ├── serialized-router-state-snapshot.md │ │ │ └── store-router-config.md │ │ ├── type-alias-declaration │ │ │ ├── router-action.md │ │ │ ├── router-cancel-action.md │ │ │ ├── router-cancel-payload.md │ │ │ ├── router-error-action.md │ │ │ ├── router-error-payload.md │ │ │ ├── router-navigated-action.md │ │ │ ├── router-navigated-payload.md │ │ │ ├── router-navigation-action.md │ │ │ ├── router-navigation-payload.md │ │ │ ├── router-reducer-state.md │ │ │ ├── router-request-action.md │ │ │ ├── router-request-payload.md │ │ │ └── state-key-or-selector.md │ │ └── variable-declaration │ │ │ ├── default-router-featurename.md │ │ │ ├── router-cancel-action.md │ │ │ ├── router-cancel.md │ │ │ ├── router-config.md │ │ │ ├── router-error-action.md │ │ │ ├── router-error.md │ │ │ ├── router-navigated-action.md │ │ │ ├── router-navigated.md │ │ │ ├── router-navigation-action.md │ │ │ ├── router-navigation.md │ │ │ ├── router-request-action.md │ │ │ └── router-request.md │ ├── store-devtools │ │ ├── class-declaration │ │ │ ├── store-devtools-config.md │ │ │ ├── store-devtools-module.md │ │ │ └── store-devtools.md │ │ ├── interface-declaration │ │ │ ├── dev-tools-feature-options.md │ │ │ └── lifted-state.md │ │ ├── type-alias-declaration │ │ │ └── store-devtools-options.md │ │ └── variable-declaration │ │ │ ├── initial-options.md │ │ │ └── recompute.md │ ├── store │ │ ├── class-declaration │ │ │ ├── actions-subject.md │ │ │ ├── reducer-manager-dispatcher.md │ │ │ ├── reducer-manager.md │ │ │ ├── reducer-observable.md │ │ │ ├── scanned-actions-subject.md │ │ │ ├── state-observable.md │ │ │ ├── state.md │ │ │ ├── store-feature-module.md │ │ │ ├── store-module.md │ │ │ ├── store-root-module.md │ │ │ └── store.md │ │ ├── function-declaration │ │ │ ├── combine-reducers.md │ │ │ ├── compose.md │ │ │ ├── create-action.md │ │ │ ├── create-feature-selector.md │ │ │ ├── create-reducer-factory.md │ │ │ ├── create-reducer.md │ │ │ ├── create-selector-factory.md │ │ │ ├── create-selector.md │ │ │ ├── default-memoize.md │ │ │ ├── default-state-fn.md │ │ │ ├── is-ngrx-mock-environment.md │ │ │ ├── on.md │ │ │ ├── props.md │ │ │ ├── reduce-state.md │ │ │ ├── result-memoize.md │ │ │ ├── select.md │ │ │ ├── set-ngrx-mock-environment.md │ │ │ └── union.md │ │ ├── interface-declaration │ │ │ ├── action-reducer-factory.md │ │ │ ├── action-reducer.md │ │ │ ├── action.md │ │ │ ├── memoized-selector-with-props.md │ │ │ ├── memoized-selector.md │ │ │ ├── on.md │ │ │ ├── root-store-config.md │ │ │ ├── runtime-checks.md │ │ │ └── store-config.md │ │ ├── type-alias-declaration │ │ │ ├── action-creator.md │ │ │ ├── action-reducer-map.md │ │ │ ├── action-type.md │ │ │ ├── creator.md │ │ │ ├── default-projector-fn.md │ │ │ ├── memoize-fn.md │ │ │ ├── memoized-projection.md │ │ │ ├── meta-reducer.md │ │ │ ├── selector-with-props.md │ │ │ └── selector.md │ │ └── variable-declaration │ │ │ ├── feature-reducers.md │ │ │ ├── init.md │ │ │ ├── initial-reducers.md │ │ │ ├── initial-state.md │ │ │ ├── meta-reducers.md │ │ │ ├── reducer-factory.md │ │ │ ├── store-features.md │ │ │ ├── update.md │ │ │ ├── user-provided-meta-reducers.md │ │ │ └── user-runtime-checks.md │ └── testing │ │ ├── class-declaration │ │ ├── mock-reducer-manager.md │ │ ├── mock-state.md │ │ └── mock-store.md │ │ ├── function-declaration │ │ ├── create-app-module-with-effects.md │ │ ├── create-app-module.md │ │ ├── create-reducers.md │ │ ├── create-workspace.md │ │ ├── get-test-project-path.md │ │ ├── provide-mock-actions.md │ │ └── provide-mock-store.md │ │ ├── interface-declaration │ │ ├── mock-selector.md │ │ └── mock-store-config.md │ │ └── variable-declaration │ │ ├── default-app-options.md │ │ └── default-workspace-options.md ├── rxjs │ ├── operators │ │ ├── audit-time.md │ │ ├── audit.md │ │ ├── buffer-count.md │ │ ├── buffer-time.md │ │ ├── buffer-toggle.md │ │ ├── buffer-when.md │ │ ├── buffer.md │ │ ├── catch-error.md │ │ ├── combine-all.md │ │ ├── combine-latest-with.md │ │ ├── combine-latest.md │ │ ├── concat-all.md │ │ ├── concat-map-to.md │ │ ├── concat-map.md │ │ ├── concat-with.md │ │ ├── concat.md │ │ ├── count.md │ │ ├── debounce-time.md │ │ ├── debounce.md │ │ ├── default-if-empty.md │ │ ├── delay-when.md │ │ ├── delay.md │ │ ├── dematerialize.md │ │ ├── distinct-until-changed.md │ │ ├── distinct-until-key-changed.md │ │ ├── distinct.md │ │ ├── element-at.md │ │ ├── end-with.md │ │ ├── every.md │ │ ├── exhaust-map.md │ │ ├── exhaust.md │ │ ├── expand.md │ │ ├── filter.md │ │ ├── finalize.md │ │ ├── find-index.md │ │ ├── find.md │ │ ├── first.md │ │ ├── flat-map.md │ │ ├── group-by.md │ │ ├── ignore-elements.md │ │ ├── is-empty.md │ │ ├── last.md │ │ ├── map-to.md │ │ ├── map.md │ │ ├── materialize.md │ │ ├── max.md │ │ ├── merge-all.md │ │ ├── merge-map-to.md │ │ ├── merge-map.md │ │ ├── merge-scan.md │ │ ├── merge-with.md │ │ ├── merge.md │ │ ├── min.md │ │ ├── multicast.md │ │ ├── observe-on.md │ │ ├── on-error-resume-next.md │ │ ├── pairwise.md │ │ ├── partition.md │ │ ├── pluck.md │ │ ├── publish-behavior.md │ │ ├── publish-last.md │ │ ├── publish-replay.md │ │ ├── publish.md │ │ ├── race-with.md │ │ ├── race.md │ │ ├── reduce.md │ │ ├── ref-count.md │ │ ├── repeat-when.md │ │ ├── repeat.md │ │ ├── retry-when.md │ │ ├── retry.md │ │ ├── sample-time.md │ │ ├── sample.md │ │ ├── scan.md │ │ ├── sequence-equal.md │ │ ├── share-replay.md │ │ ├── share.md │ │ ├── single.md │ │ ├── skip-last.md │ │ ├── skip-until.md │ │ ├── skip-while.md │ │ ├── skip.md │ │ ├── start-with.md │ │ ├── subscribe-on.md │ │ ├── switch-all.md │ │ ├── switch-map-to.md │ │ ├── switch-map.md │ │ ├── take-last.md │ │ ├── take-until.md │ │ ├── take-while.md │ │ ├── take.md │ │ ├── tap.md │ │ ├── throttle-time.md │ │ ├── throttle.md │ │ ├── throw-if-empty.md │ │ ├── time-interval.md │ │ ├── timeout-with.md │ │ ├── timeout.md │ │ ├── timestamp.md │ │ ├── to-array.md │ │ ├── window-count.md │ │ ├── window-time.md │ │ ├── window-toggle.md │ │ ├── window-when.md │ │ ├── window.md │ │ ├── with-latest-from.md │ │ ├── zip-all.md │ │ ├── zip-with.md │ │ └── zip.md │ ├── output.json │ └── src │ │ ├── animation-frame-scheduler.md │ │ ├── animation-frame.md │ │ ├── animation-frames.md │ │ ├── argument-out-of-range-error.md │ │ ├── asap-scheduler.md │ │ ├── asap.md │ │ ├── async-scheduler.md │ │ ├── async-subject.md │ │ ├── async.md │ │ ├── behavior-subject.md │ │ ├── bind-callback.md │ │ ├── bind-node-callback.md │ │ ├── combine-latest.md │ │ ├── complete-notification.md │ │ ├── completion-observer.md │ │ ├── concat.md │ │ ├── config.md │ │ ├── connectable-observable.md │ │ ├── cons.md │ │ ├── defer.md │ │ ├── empty-error.md │ │ ├── empty.md │ │ ├── error-notification.md │ │ ├── error-observer.md │ │ ├── factory-or-value.md │ │ ├── first-value-from.md │ │ ├── fork-join.md │ │ ├── from-event-pattern.md │ │ ├── from-event.md │ │ ├── from.md │ │ ├── generate.md │ │ ├── grouped-observable.md │ │ ├── head.md │ │ ├── identity.md │ │ ├── iif.md │ │ ├── interop-observable.md │ │ ├── interval.md │ │ ├── is-observable.md │ │ ├── last-value-from.md │ │ ├── merge.md │ │ ├── mono-type-operator-function.md │ │ ├── never.md │ │ ├── next-notification.md │ │ ├── next-observer.md │ │ ├── noop.md │ │ ├── not-found-error.md │ │ ├── notification-kind.md │ │ ├── notification.md │ │ ├── object-unsubscribed-error.md │ │ ├── observable-input.md │ │ ├── observable-like.md │ │ ├── observable-notification.md │ │ ├── observable.md │ │ ├── observed-value-of.md │ │ ├── observed-value-tuple-from-array.md │ │ ├── observed-value-union-from-array.md │ │ ├── observed-values-from-array.md │ │ ├── observer.md │ │ ├── of.md │ │ ├── on-error-resume-next.md │ │ ├── operator-function.md │ │ ├── operator.md │ │ ├── pairs.md │ │ ├── partial-observer.md │ │ ├── partition.md │ │ ├── pipe.md │ │ ├── queue-scheduler.md │ │ ├── queue.md │ │ ├── race.md │ │ ├── range.md │ │ ├── replay-subject.md │ │ ├── scheduled.md │ │ ├── scheduler-action.md │ │ ├── scheduler-like.md │ │ ├── scheduler.md │ │ ├── sequence-error.md │ │ ├── subject.md │ │ ├── subscribable-or-promise.md │ │ ├── subscribable.md │ │ ├── subscriber.md │ │ ├── subscription-like.md │ │ ├── subscription.md │ │ ├── tail.md │ │ ├── teardown-logic.md │ │ ├── throw-error.md │ │ ├── time-interval.md │ │ ├── timeout-error.md │ │ ├── timer.md │ │ ├── timestamp-provider.md │ │ ├── timestamp.md │ │ ├── unary-function.md │ │ ├── unsubscribable.md │ │ ├── unsubscription-error.md │ │ ├── using.md │ │ ├── value-from-array.md │ │ ├── value-from-notification.md │ │ ├── virtual-action.md │ │ ├── virtual-time-scheduler.md │ │ └── zip.md └── transloco │ ├── output.json │ └── src │ ├── available-langs.md │ ├── coerce-array.md │ ├── cookies-storage.md │ ├── currency.md │ ├── date-format-options.md │ ├── date-format-styles.md │ ├── date-number-formats.md │ ├── date-string-formats.md │ ├── default-config.md │ ├── default-date-transformer.md │ ├── default-fallback-strategy.md │ ├── default-number-transformer.md │ ├── default-providers.md │ ├── default-transpiler.md │ ├── failed-event.md │ ├── flatten.md │ ├── functional-transpiler.md │ ├── get-browser-culture-lang.md │ ├── get-browser-lang.md │ ├── get-config.md │ ├── get-function-args.md │ ├── get-lang-from-scope.md │ ├── get-pipe-value.md │ ├── get-scope-from-lang.md │ ├── get-value.md │ ├── has-inline-loader.md │ ├── hash-map.md │ ├── inline-loader.md │ ├── is-browser.md │ ├── is-defined.md │ ├── is-empty.md │ ├── is-function.md │ ├── is-nil.md │ ├── is-number.md │ ├── is-object.md │ ├── is-scope-object.md │ ├── is-string.md │ ├── load-options.md │ ├── loaded-event.md │ ├── locale-config.md │ ├── locale-currency-mapping.md │ ├── locale-default-locale.md │ ├── locale-format-options.md │ ├── locale-lang-mapping.md │ ├── locale.md │ ├── maybe-array.md │ ├── maybe-async-storage.md │ ├── maybe-async.md │ ├── message-format-transpiler.md │ ├── messageformat-config.md │ ├── mflocale.md │ ├── number-format-options.md │ ├── number-types.md │ ├── persist-lang-config.md │ ├── persist-storage.md │ ├── persist-translations-config.md │ ├── persist-translations-loader.md │ ├── persist-translations-storage.md │ ├── pipes.md │ ├── provide-transloco-config.md │ ├── provider-scope.md │ ├── set-translation-options.md │ ├── set-value.md │ ├── size.md │ ├── template-handler.md │ ├── testing-loader.md │ ├── timezone-name-formats.md │ ├── to-camel-case.md │ ├── to-number.md │ ├── translate-object-params.md │ ├── translate-params.md │ ├── translate.md │ ├── translation.md │ ├── transloco-config.md │ ├── transloco-currency-pipe.md │ ├── transloco-date-pipe.md │ ├── transloco-date-transformer.md │ ├── transloco-decimal-pipe.md │ ├── transloco-directive.md │ ├── transloco-events.md │ ├── transloco-fallback-strategy.md │ ├── transloco-interceptor.md │ ├── transloco-lang.md │ ├── transloco-loader.md │ ├── transloco-loading-template.md │ ├── transloco-locale-config.md │ ├── transloco-locale-module.md │ ├── transloco-locale-service.md │ ├── transloco-message-format-config.md │ ├── transloco-message-format-module.md │ ├── transloco-missing-handler-data.md │ ├── transloco-missing-handler.md │ ├── transloco-module.md │ ├── transloco-number-transformer.md │ ├── transloco-percent-pipe.md │ ├── transloco-persist-lang-config.md │ ├── transloco-persist-lang-module.md │ ├── transloco-persist-lang-service.md │ ├── transloco-persist-lang-storage.md │ ├── transloco-persist-translations-config.md │ ├── transloco-persist-translations-module.md │ ├── transloco-persist-translations.md │ ├── transloco-pipe.md │ ├── transloco-preload-langs-module.md │ ├── transloco-scope.md │ ├── transloco-service.md │ ├── transloco-testing-module.md │ ├── transloco-transpiler-function.md │ ├── transloco-transpiler.md │ ├── unflatten.md │ ├── valid-date.md │ └── view.md ├── package.json ├── prettier.config.js ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Config 4 | module: testing-library 5 | --- 6 | 7 | # Config 8 | 9 | ```ts 10 | interface Config { 11 | defaultImports: any[]; 12 | dom: Partial; 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/projects/testing-library/src/lib/models.ts#L284-L287) 17 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/create-event.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: createEvent 4 | module: testing-library 5 | --- 6 | 7 | # createEvent 8 | 9 | ```ts 10 | const createEvent: CreateObject; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/events.d.ts#L109-L109) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByAltText 4 | module: testing-library 5 | --- 6 | 7 | # findAllByAltText 8 | 9 | ```ts 10 | const findAllByAltText: FindAllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L115-L115) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # findAllByDisplayValue 8 | 9 | ```ts 10 | const findAllByDisplayValue: FindAllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L127-L127) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # findAllByLabelText 8 | 9 | ```ts 10 | const findAllByLabelText: FindAllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L97-L97) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # findAllByPlaceholderText 8 | 9 | ```ts 10 | const findAllByPlaceholderText: FindAllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L103-L103) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByRole 4 | module: testing-library 5 | --- 6 | 7 | # findAllByRole 8 | 9 | ```ts 10 | const findAllByRole: FindAllByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L133-L133) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByTestId 4 | module: testing-library 5 | --- 6 | 7 | # findAllByTestId 8 | 9 | ```ts 10 | const findAllByTestId: FindAllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L139-L139) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByText 4 | module: testing-library 5 | --- 6 | 7 | # findAllByText 8 | 9 | ```ts 10 | const findAllByText: FindAllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L109-L109) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-all-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findAllByTitle 4 | module: testing-library 5 | --- 6 | 7 | # findAllByTitle 8 | 9 | ```ts 10 | const findAllByTitle: FindAllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L121-L121) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByAltText 4 | module: testing-library 5 | --- 6 | 7 | # findByAltText 8 | 9 | ```ts 10 | const findByAltText: FindByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L114-L114) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # findByDisplayValue 8 | 9 | ```ts 10 | const findByDisplayValue: FindByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L126-L126) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # findByLabelText 8 | 9 | ```ts 10 | const findByLabelText: FindByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L96-L96) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # findByPlaceholderText 8 | 9 | ```ts 10 | const findByPlaceholderText: FindByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L102-L102) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByRole 4 | module: testing-library 5 | --- 6 | 7 | # findByRole 8 | 9 | ```ts 10 | const findByRole: FindByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L132-L132) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByTestId 4 | module: testing-library 5 | --- 6 | 7 | # findByTestId 8 | 9 | ```ts 10 | const findByTestId: FindByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L138-L138) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByText 4 | module: testing-library 5 | --- 6 | 7 | # findByText 8 | 9 | ```ts 10 | const findByText: FindByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L108-L108) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/find-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: findByTitle 4 | module: testing-library 5 | --- 6 | 7 | # findByTitle 8 | 9 | ```ts 10 | const findByTitle: FindByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L120-L120) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/fire-event.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: fireEvent 4 | module: testing-library 5 | --- 6 | 7 | # fireEvent 8 | 9 | ```ts 10 | const fireEvent: FireFunction & FireObject; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/events.d.ts#L110-L110) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByAltText 4 | module: testing-library 5 | --- 6 | 7 | # getAllByAltText 8 | 9 | ```ts 10 | const getAllByAltText: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L111-L111) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # getAllByDisplayValue 8 | 9 | ```ts 10 | const getAllByDisplayValue: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L123-L123) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # getAllByLabelText 8 | 9 | ```ts 10 | const getAllByLabelText: AllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L93-L93) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # getAllByPlaceholderText 8 | 9 | ```ts 10 | const getAllByPlaceholderText: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L99-L99) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByRole 4 | module: testing-library 5 | --- 6 | 7 | # getAllByRole 8 | 9 | ```ts 10 | const getAllByRole: AllByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L129-L129) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByTestId 4 | module: testing-library 5 | --- 6 | 7 | # getAllByTestId 8 | 9 | ```ts 10 | const getAllByTestId: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L135-L135) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByText 4 | module: testing-library 5 | --- 6 | 7 | # getAllByText 8 | 9 | ```ts 10 | const getAllByText: AllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L105-L105) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-all-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getAllByTitle 4 | module: testing-library 5 | --- 6 | 7 | # getAllByTitle 8 | 9 | ```ts 10 | const getAllByTitle: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L117-L117) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByAltText 4 | module: testing-library 5 | --- 6 | 7 | # getByAltText 8 | 9 | ```ts 10 | const getByAltText: GetByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L110-L110) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # getByDisplayValue 8 | 9 | ```ts 10 | const getByDisplayValue: GetByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L122-L122) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # getByLabelText 8 | 9 | ```ts 10 | const getByLabelText: GetByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L92-L92) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # getByPlaceholderText 8 | 9 | ```ts 10 | const getByPlaceholderText: GetByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L98-L98) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByRole 4 | module: testing-library 5 | --- 6 | 7 | # getByRole 8 | 9 | ```ts 10 | const getByRole: GetByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L128-L128) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByTestId 4 | module: testing-library 5 | --- 6 | 7 | # getByTestId 8 | 9 | ```ts 10 | const getByTestId: GetByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L134-L134) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByText 4 | module: testing-library 5 | --- 6 | 7 | # getByText 8 | 9 | ```ts 10 | const getByText: GetByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L104-L104) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getByTitle 4 | module: testing-library 5 | --- 6 | 7 | # getByTitle 8 | 9 | ```ts 10 | const getByTitle: GetByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L116-L116) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/get-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: getConfig 4 | module: testing-library 5 | --- 6 | 7 | # getConfig 8 | 9 | ```ts 10 | function getConfig(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/projects/testing-library/src/lib/config.ts#L22-L24) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByAltText 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByAltText 8 | 9 | ```ts 10 | const queryAllByAltText: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L113-L113) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-attribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByAttribute 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByAttribute 8 | 9 | ```ts 10 | const queryAllByAttribute: AllByAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/query-helpers.d.ts#L23-L23) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByDisplayValue 8 | 9 | ```ts 10 | const queryAllByDisplayValue: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L125-L125) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByLabelText 8 | 9 | ```ts 10 | const queryAllByLabelText: AllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L95-L95) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByPlaceholderText 8 | 9 | ```ts 10 | const queryAllByPlaceholderText: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L101-L101) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByRole 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByRole 8 | 9 | ```ts 10 | const queryAllByRole: AllByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L131-L131) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByTestId 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByTestId 8 | 9 | ```ts 10 | const queryAllByTestId: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L137-L137) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByText 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByText 8 | 9 | ```ts 10 | const queryAllByText: AllByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L107-L107) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-all-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryAllByTitle 4 | module: testing-library 5 | --- 6 | 7 | # queryAllByTitle 8 | 9 | ```ts 10 | const queryAllByTitle: AllByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L119-L119) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-alt-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByAltText 4 | module: testing-library 5 | --- 6 | 7 | # queryByAltText 8 | 9 | ```ts 10 | const queryByAltText: QueryByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L112-L112) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-attribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByAttribute 4 | module: testing-library 5 | --- 6 | 7 | # queryByAttribute 8 | 9 | ```ts 10 | const queryByAttribute: QueryByAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/query-helpers.d.ts#L22-L22) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-display-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByDisplayValue 4 | module: testing-library 5 | --- 6 | 7 | # queryByDisplayValue 8 | 9 | ```ts 10 | const queryByDisplayValue: QueryByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L124-L124) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-label-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByLabelText 4 | module: testing-library 5 | --- 6 | 7 | # queryByLabelText 8 | 9 | ```ts 10 | const queryByLabelText: QueryByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L94-L94) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-placeholder-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByPlaceholderText 4 | module: testing-library 5 | --- 6 | 7 | # queryByPlaceholderText 8 | 9 | ```ts 10 | const queryByPlaceholderText: QueryByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L100-L100) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-role.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByRole 4 | module: testing-library 5 | --- 6 | 7 | # queryByRole 8 | 9 | ```ts 10 | const queryByRole: QueryByRole; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L130-L130) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-test-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByTestId 4 | module: testing-library 5 | --- 6 | 7 | # queryByTestId 8 | 9 | ```ts 10 | const queryByTestId: QueryByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L136-L136) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-text.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByText 4 | module: testing-library 5 | --- 6 | 7 | # queryByText 8 | 9 | ```ts 10 | const queryByText: QueryByText; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L106-L106) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/query-by-title.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queryByTitle 4 | module: testing-library 5 | --- 6 | 7 | # queryByTitle 8 | 9 | ```ts 10 | const queryByTitle: QueryByBoundAttribute; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/queries.d.ts#L118-L118) 14 | -------------------------------------------------------------------------------- /docs/angular-testing-library/testing-library/within.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: within 4 | module: testing-library 5 | --- 6 | 7 | # within 8 | 9 | ```ts 10 | const within: typeof getQueriesForElement; 11 | ``` 12 | 13 | [Link to repo](https://github.com/testing-library/angular-testing-library/blob/master/node_modules/@testing-library/dom/types/index.d.ts#L7-L7) 14 | -------------------------------------------------------------------------------- /docs/angular/common/class-declaration/ng-for-of-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: NgForOfContext 4 | module: common 5 | --- 6 | 7 | # NgForOfContext 8 | 9 | ```ts 10 | class NgForOfContext = NgIterable> {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/directives/ng_for_of.ts#L14-L32) 14 | 15 | ## publicApi 16 | -------------------------------------------------------------------------------- /docs/angular/common/function-declaration/ɵget-dom.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵgetDOM 4 | module: common 5 | --- 6 | 7 | # ɵgetDOM 8 | 9 | ```ts 10 | function getDOM(): DomAdapter; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/dom_adapter.ts#L11-L13) 14 | -------------------------------------------------------------------------------- /docs/angular/common/interface-declaration/location-change-listener.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: LocationChangeListener 4 | module: common 5 | --- 6 | 7 | # LocationChangeListener 8 | 9 | ```ts 10 | interface LocationChangeListener {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/location/platform_location.ts#L89-L91) 14 | 15 | ## publicApi 16 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/app-base-href.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: APP_BASE_HREF 4 | module: common 5 | --- 6 | 7 | # APP_BASE_HREF 8 | 9 | ```ts 10 | const APP_BASE_HREF: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/location/location_strategy.ts#L74-L74) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/document.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: DOCUMENT 4 | module: common 5 | --- 6 | 7 | # DOCUMENT 8 | 9 | ```ts 10 | const DOCUMENT: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/dom_tokens.ts#L19-L19) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/get-locale-plural-case.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getLocalePluralCase 4 | module: common 5 | --- 6 | 7 | # getLocalePluralCase 8 | 9 | ```ts 10 | const getLocalePluralCase: (locale: string) => (value: number) => Plural; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/i18n/locale_data_api.ts#L507-L508) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/location-initialized.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCATION_INITIALIZED 4 | module: common 5 | --- 6 | 7 | # LOCATION_INITIALIZED 8 | 9 | ```ts 10 | const LOCATION_INITIALIZED: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/location/platform_location.ts#L73-L73) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: common 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/version.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/ɵplatform-browser-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵPLATFORM_BROWSER_ID 4 | module: common 5 | --- 6 | 7 | # ɵPLATFORM_BROWSER_ID 8 | 9 | ```ts 10 | const PLATFORM_BROWSER_ID: "browser"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/platform_id.ts#L9-L9) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/ɵplatform-server-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵPLATFORM_SERVER_ID 4 | module: common 5 | --- 6 | 7 | # ɵPLATFORM_SERVER_ID 8 | 9 | ```ts 10 | const PLATFORM_SERVER_ID: "server"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/platform_id.ts#L10-L10) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/ɵplatform-worker-app-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵPLATFORM_WORKER_APP_ID 4 | module: common 5 | --- 6 | 7 | # ɵPLATFORM_WORKER_APP_ID 8 | 9 | ```ts 10 | const PLATFORM_WORKER_APP_ID: "browserWorkerApp"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/platform_id.ts#L11-L11) 14 | -------------------------------------------------------------------------------- /docs/angular/common/variable-declaration/ɵplatform-worker-ui-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵPLATFORM_WORKER_UI_ID 4 | module: common 5 | --- 6 | 7 | # ɵPLATFORM_WORKER_UI_ID 8 | 9 | ```ts 10 | const PLATFORM_WORKER_UI_ID: "browserWorkerUi"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/common/src/platform_id.ts#L12-L12) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/astwith-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ASTWithName 4 | module: compiler 5 | --- 6 | 7 | # ASTWithName 8 | 9 | ```ts 10 | class ASTWithName extends AST {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L42-L47) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/bound-element-property.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: BoundElementProperty 4 | module: compiler 5 | --- 6 | 7 | # BoundElementProperty 8 | 9 | ```ts 10 | class BoundElementProperty {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L813-L818) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/compiled-stylesheet.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: CompiledStylesheet 4 | module: compiler 5 | --- 6 | 7 | # CompiledStylesheet 8 | 9 | ```ts 10 | class CompiledStylesheet {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/style_compiler.ts#L25-L30) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/expression-binding.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ExpressionBinding 4 | module: compiler 5 | --- 6 | 7 | # ExpressionBinding 8 | 9 | ```ts 10 | class ExpressionBinding {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L340-L354) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/external-reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ExternalReference 4 | module: compiler 5 | --- 6 | 7 | # ExternalReference 8 | 9 | ```ts 10 | class ExternalReference {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L633-L637) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/parse-source-file.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ParseSourceFile 4 | module: compiler 5 | --- 6 | 7 | # ParseSourceFile 8 | 9 | ```ts 10 | class ParseSourceFile {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/parse_util.ts#L98-L100) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/parse-tree-result.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ParseTreeResult 4 | module: compiler 5 | --- 6 | 7 | # ParseTreeResult 8 | 9 | ```ts 10 | class ParseTreeResult {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/parser.ts#L25-L27) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/parsed-event.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ParsedEvent 4 | module: compiler 5 | --- 6 | 7 | # ParsedEvent 8 | 9 | ```ts 10 | class ParsedEvent {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L781-L788) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/parsed-variable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ParsedVariable 4 | module: compiler 5 | --- 6 | 7 | # ParsedVariable 8 | 9 | ## description 10 | 11 | ParsedVariable represents a variable declaration in a microsyntax expression. 12 | 13 | ```ts 14 | class ParsedVariable {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L793-L798) 18 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/resolved-static-symbol.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ResolvedStaticSymbol 4 | module: compiler 5 | --- 6 | 7 | # ResolvedStaticSymbol 8 | 9 | ```ts 10 | class ResolvedStaticSymbol {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/aot/static_symbol_resolver.ts#L17-L19) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/split-interpolation.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: SplitInterpolation 4 | module: compiler 5 | --- 6 | 7 | # SplitInterpolation 8 | 9 | ```ts 10 | class SplitInterpolation {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/parser.ts#L16-L18) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/styles-compile-dependency.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: StylesCompileDependency 4 | module: compiler 5 | --- 6 | 7 | # StylesCompileDependency 8 | 9 | ```ts 10 | class StylesCompileDependency {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/style_compiler.ts#L20-L23) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/template-binding-parse-result.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: TemplateBindingParseResult 4 | module: compiler 5 | --- 6 | 7 | # TemplateBindingParseResult 8 | 9 | ```ts 10 | class TemplateBindingParseResult {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/parser.ts#L20-L24) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/template-parse-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: TemplateParseError 4 | module: compiler 5 | --- 6 | 7 | # TemplateParseError 8 | 9 | ```ts 10 | class TemplateParseError extends ParseError {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/template_parser/template_parser.ts#L68-L72) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/template-parse-result.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: TemplateParseResult 4 | module: compiler 5 | --- 6 | 7 | # TemplateParseResult 8 | 9 | ```ts 10 | class TemplateParseResult {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/template_parser/template_parser.ts#L74-L78) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/class-declaration/variable-binding.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: VariableBinding 4 | module: compiler 5 | --- 6 | 7 | # VariableBinding 8 | 9 | ```ts 10 | class VariableBinding {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L328-L338) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/builtin-method.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: BuiltinMethod 4 | module: compiler 5 | --- 6 | 7 | # BuiltinMethod 8 | 9 | ```ts 10 | export enum BuiltinMethod { 11 | ConcatArray, 12 | SubscribeObservable, 13 | Bind, 14 | } 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L412-L416) 18 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/builtin-var.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: BuiltinVar 4 | module: compiler 5 | --- 6 | 7 | # BuiltinVar 8 | 9 | ```ts 10 | export enum BuiltinVar { 11 | This, 12 | Super, 13 | CatchError, 14 | CatchStack, 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L257-L262) 19 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/compile-summary-kind.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: CompileSummaryKind 4 | module: compiler 5 | --- 6 | 7 | # CompileSummaryKind 8 | 9 | ```ts 10 | export enum CompileSummaryKind { 11 | Pipe, 12 | Directive, 13 | NgModule, 14 | Injectable, 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/compile_metadata.ts#L83-L88) 19 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/parse-error-level.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ParseErrorLevel 4 | module: compiler 5 | --- 6 | 7 | # ParseErrorLevel 8 | 9 | ```ts 10 | export enum ParseErrorLevel { 11 | WARNING, 12 | ERROR, 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/parse_util.ts#L111-L114) 17 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/parsed-property-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ParsedPropertyType 4 | module: compiler 5 | --- 6 | 7 | # ParsedPropertyType 8 | 9 | ```ts 10 | export enum ParsedPropertyType { 11 | DEFAULT, 12 | LITERAL_ATTR, 13 | ANIMATION, 14 | } 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L768-L772) 18 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/provider-ast-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ProviderAstType 4 | module: compiler 5 | --- 6 | 7 | # ProviderAstType 8 | 9 | ```ts 10 | export enum ProviderAstType { 11 | PublicService, 12 | PrivateService, 13 | Component, 14 | Directive, 15 | Builtin, 16 | } 17 | ``` 18 | 19 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/template_parser/template_ast.ts#L255-L261) 20 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/r3-factory-target.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: R3FactoryTarget 4 | module: compiler 5 | --- 6 | 7 | # R3FactoryTarget 8 | 9 | ```ts 10 | export enum R3FactoryTarget { 11 | Directive = 0, 12 | Component = 1, 13 | Injectable = 2, 14 | Pipe = 3, 15 | NgModule = 4, 16 | } 17 | ``` 18 | 19 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/render3/r3_factory.ts#L95-L101) 20 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/stmt-modifier.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: StmtModifier 4 | module: compiler 5 | --- 6 | 7 | # StmtModifier 8 | 9 | ```ts 10 | export enum StmtModifier { 11 | Final, 12 | Private, 13 | Exported, 14 | Static, 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L932-L937) 19 | -------------------------------------------------------------------------------- /docs/angular/compiler/enum-declaration/token-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: TokenType 4 | module: compiler 5 | --- 6 | 7 | # TokenType 8 | 9 | ```ts 10 | export enum TokenType { 11 | Character, 12 | Identifier, 13 | Keyword, 14 | String, 15 | Operator, 16 | Number, 17 | Error, 18 | } 19 | ``` 20 | 21 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/lexer.ts#L11-L19) 22 | -------------------------------------------------------------------------------- /docs/angular/compiler/function-declaration/create-offline-compile-url-resolver.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: createOfflineCompileUrlResolver 4 | module: compiler 5 | --- 6 | 7 | # createOfflineCompileUrlResolver 8 | 9 | ```ts 10 | function createOfflineCompileUrlResolver(): UrlResolver; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/url_resolver.ts#L16-L18) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/aot-summary-resolver-host.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: AotSummaryResolverHost 4 | module: compiler 5 | --- 6 | 7 | # AotSummaryResolverHost 8 | 9 | ```ts 10 | interface AotSummaryResolverHost {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/aot/summary_resolver.ts#L15-L40) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/ast-visitor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: AstVisitor 4 | module: compiler 5 | --- 6 | 7 | # AstVisitor 8 | 9 | ```ts 10 | interface AstVisitor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L361-L390) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/expression-visitor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ExpressionVisitor 4 | module: compiler 5 | --- 6 | 7 | # ExpressionVisitor 8 | 9 | ```ts 10 | interface ExpressionVisitor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L898-L922) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/ng-analyze-modules-host.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: NgAnalyzeModulesHost 4 | module: compiler 5 | --- 6 | 7 | # NgAnalyzeModulesHost 8 | 9 | ```ts 10 | interface NgAnalyzeModulesHost {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/aot/compiler.ts#L815-L817) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/proxy-class.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ProxyClass 4 | module: compiler 5 | --- 6 | 7 | # ProxyClass 8 | 9 | ```ts 10 | interface ProxyClass {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/compile_metadata.ts#L75-L77) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/statement-visitor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: StatementVisitor 4 | module: compiler 5 | --- 6 | 7 | # StatementVisitor 8 | 9 | ```ts 10 | interface StatementVisitor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L1163-L1174) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/type-visitor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TypeVisitor 4 | module: compiler 5 | --- 6 | 7 | # TypeVisitor 8 | 9 | ```ts 10 | interface TypeVisitor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L94-L99) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/url-resolver-ctor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: UrlResolverCtor 4 | module: compiler 5 | --- 6 | 7 | # UrlResolverCtor 8 | 9 | ```ts 10 | interface UrlResolverCtor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/url_resolver.ts#L40-L42) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/interface-declaration/visitor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Visitor 4 | module: compiler 5 | --- 6 | 7 | # Visitor 8 | 9 | ```ts 10 | interface Visitor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/ast.ts#L83-L94) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/error-collector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ErrorCollector 4 | module: compiler 5 | --- 6 | 7 | # ErrorCollector 8 | 9 | ```ts 10 | export type ErrorCollector = (error: any, type?: any) => void; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/metadata_resolver.ts#L28-L28) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/formatted-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: FormattedError 4 | module: compiler 5 | --- 6 | 7 | # FormattedError 8 | 9 | ```ts 10 | export type FormattedError = Error & { 11 | chain: FormattedMessageChain; 12 | position?: Position; 13 | }; 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/aot/formatted_error.ts#L23-L26) 17 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/html-ast-path.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: HtmlAstPath 4 | module: compiler 5 | --- 6 | 7 | # HtmlAstPath 8 | 9 | ```ts 10 | export type HtmlAstPath = AstPath; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/ast.ts#L145-L145) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/literal-map-key.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: LiteralMapKey 4 | module: compiler 5 | --- 6 | 7 | # LiteralMapKey 8 | 9 | ```ts 10 | export type LiteralMapKey = { 11 | key: string; 12 | quoted: boolean; 13 | }; 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/ast.ts#L191-L193) 17 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/reference-filter.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ReferenceFilter 4 | module: compiler 5 | --- 6 | 7 | # ReferenceFilter 8 | 9 | ```ts 10 | export type ReferenceFilter = (reference: o.ExternalReference) => boolean; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/ts_emitter.ts#L31-L31) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/type-alias-declaration/template-ast-path.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TemplateAstPath 4 | module: compiler 5 | --- 6 | 7 | # TemplateAstPath 8 | 9 | ```ts 10 | export type TemplateAstPath = AstPath; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/template_parser/template_ast.ts#L393-L393) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/content-attr.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: CONTENT_ATTR 4 | module: compiler 5 | --- 6 | 7 | # CONTENT_ATTR 8 | 9 | ```ts 10 | const CONTENT_ATTR: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/style_compiler.ts#L18-L18) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/custom-elements-schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: CUSTOM_ELEMENTS_SCHEMA 4 | module: compiler 5 | --- 6 | 7 | # CUSTOM_ELEMENTS_SCHEMA 8 | 9 | ```ts 10 | const CUSTOM_ELEMENTS_SCHEMA: SchemaMetadata; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/core.ts#L160-L162) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/default-interpolation-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: DEFAULT_INTERPOLATION_CONFIG 4 | module: compiler 5 | --- 6 | 7 | # DEFAULT_INTERPOLATION_CONFIG 8 | 9 | ```ts 10 | const DEFAULT_INTERPOLATION_CONFIG: InterpolationConfig; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/interpolation_config.ts#L24-L25) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/dynamic-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: DYNAMIC_TYPE 4 | module: compiler 5 | --- 6 | 7 | # DYNAMIC_TYPE 8 | 9 | ```ts 10 | const DYNAMIC_TYPE: BuiltinType; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L85-L85) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/eof.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: EOF 4 | module: compiler 5 | --- 6 | 7 | # EOF 8 | 9 | ```ts 10 | const EOF: Token; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/expression_parser/lexer.ts#L146-L146) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/error-component-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ERROR_COMPONENT_TYPE 4 | module: compiler 5 | --- 6 | 7 | # ERROR_COMPONENT_TYPE 8 | 9 | ```ts 10 | const ERROR_COMPONENT_TYPE: "ngComponentType"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/metadata_resolver.ts#L30-L30) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/host-attr.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: HOST_ATTR 4 | module: compiler 5 | --- 6 | 7 | # HOST_ATTR 8 | 9 | ```ts 10 | const HOST_ATTR: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/style_compiler.ts#L17-L17) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/named-entities.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NAMED_ENTITIES 4 | module: compiler 5 | --- 6 | 7 | # NAMED_ENTITIES 8 | 9 | ```ts 10 | const NAMED_ENTITIES: { [k: string]: string }; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/tags.ts#L70-L323) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/ngsp-unicode.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NGSP_UNICODE 4 | module: compiler 5 | --- 6 | 7 | # NGSP_UNICODE 8 | 9 | ```ts 10 | const NGSP_UNICODE: ""; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/ml_parser/tags.ts#L327-L327) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/no-errors-schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NO_ERRORS_SCHEMA 4 | module: compiler 5 | --- 6 | 7 | # NO_ERRORS_SCHEMA 8 | 9 | ```ts 10 | const NO_ERRORS_SCHEMA: SchemaMetadata; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/core.ts#L164-L166) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/none-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NONE_TYPE 4 | module: compiler 5 | --- 6 | 7 | # NONE_TYPE 8 | 9 | ```ts 10 | const NONE_TYPE: BuiltinType; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L92-L92) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/string-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: STRING_TYPE 4 | module: compiler 5 | --- 6 | 7 | # STRING_TYPE 8 | 9 | ```ts 10 | const STRING_TYPE: BuiltinType; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/output/output_ast.ts#L90-L90) 14 | -------------------------------------------------------------------------------- /docs/angular/compiler/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: compiler 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: Version; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/compiler/src/version.ts#L17-L17) 14 | -------------------------------------------------------------------------------- /docs/angular/core/class-declaration/debug-event-listener.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: DebugEventListener 4 | module: core 5 | --- 6 | 7 | # DebugEventListener 8 | 9 | ```ts 10 | class DebugEventListener {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/debug/debug_node.ts#L25-L27) 14 | 15 | ## publicApi 16 | -------------------------------------------------------------------------------- /docs/angular/core/class-declaration/ng-probe-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: NgProbeToken 4 | module: core 5 | --- 6 | 7 | # NgProbeToken 8 | 9 | ## description 10 | 11 | A token for third-party components that can register themselves with NgProbe. 12 | 13 | ```ts 14 | class NgProbeToken {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_ref.ts#L132-L134) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/enum-declaration/ɵargument-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ɵArgumentType 4 | module: core 5 | --- 6 | 7 | # ɵArgumentType 8 | 9 | ```ts 10 | export const enum ArgumentType { 11 | Inline = 0, 12 | Dynamic = 1, 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/types.ts#L98-L101) 17 | -------------------------------------------------------------------------------- /docs/angular/core/enum-declaration/ɵquery-binding-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ɵQueryBindingType 4 | module: core 5 | --- 6 | 7 | # ɵQueryBindingType 8 | 9 | ```ts 10 | export const enum QueryBindingType { 11 | First = 0, 12 | All = 1, 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/types.ts#L334-L337) 17 | -------------------------------------------------------------------------------- /docs/angular/core/enum-declaration/ɵquery-value-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ɵQueryValueType 4 | module: core 5 | --- 6 | 7 | # ɵQueryValueType 8 | 9 | ```ts 10 | export const enum QueryValueType { 11 | ElementRef = 0, 12 | RenderElement = 1, 13 | TemplateRef = 2, 14 | ViewContainerRef = 3, 15 | Provider = 4, 16 | } 17 | ``` 18 | 19 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/types.ts#L251-L257) 20 | -------------------------------------------------------------------------------- /docs/angular/core/enum-declaration/ɵview-flags.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ɵViewFlags 4 | module: core 5 | --- 6 | 7 | # ɵViewFlags 8 | 9 | ## description 10 | 11 | Bitmask for ViewDefinition.flags. 12 | 13 | ```ts 14 | export const enum ViewFlags { 15 | None = 0, 16 | OnPush = 1 << 1, 17 | } 18 | ``` 19 | 20 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/types.ts#L110-L113) 21 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/get-platform.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: getPlatform 4 | module: core 5 | --- 6 | 7 | # getPlatform 8 | 9 | ## description 10 | 11 | Returns the current platform. 12 | 13 | ```ts 14 | function getPlatform(): PlatformRef | null; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_ref.ts#L227-L229) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/ɵclear-overrides.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵclearOverrides 4 | module: core 5 | --- 6 | 7 | # ɵclearOverrides 8 | 9 | ```ts 10 | function clearOverrides(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/entrypoint.ts#L28-L31) 14 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/ɵinit-services-if-needed.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵinitServicesIfNeeded 4 | module: core 5 | --- 6 | 7 | # ɵinitServicesIfNeeded 8 | 9 | ```ts 10 | function initServicesIfNeeded(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/services.ts#L32-L55) 14 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/ɵreset-compiled-components.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵresetCompiledComponents 4 | module: core 5 | --- 6 | 7 | # ɵresetCompiledComponents 8 | 9 | ```ts 10 | function resetCompiledComponents(): void; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/jit/module.ts#L361-L365) 14 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/ɵreset-jit-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵresetJitOptions 4 | module: core 5 | --- 6 | 7 | # ɵresetJitOptions 8 | 9 | ```ts 10 | function resetJitOptions(): void; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/jit/jit_options.ts#L39-L41) 14 | -------------------------------------------------------------------------------- /docs/angular/core/function-declaration/ɵɵelement-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵɵelementEnd 4 | module: core 5 | --- 6 | 7 | # ɵɵelementEnd 8 | 9 | ## description 10 | 11 | Mark the end of the element. 12 | 13 | ```ts 14 | function ɵɵelementEnd(): void; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/instructions/element.ts#L130-L162) 18 | 19 | ## codeGenApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/component-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ComponentDecorator 4 | module: core 5 | --- 6 | 7 | # ComponentDecorator 8 | 9 | ## description 10 | 11 | Component decorator interface 12 | 13 | ```ts 14 | interface ComponentDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L307-L450) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/host-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: HostDecorator 4 | module: core 5 | --- 6 | 7 | # HostDecorator 8 | 9 | ## description 10 | 11 | Type of the `Host` decorator / constructor function. 12 | 13 | ```ts 14 | interface HostDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L198-L216) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/host.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Host 4 | module: core 5 | --- 6 | 7 | # Host 8 | 9 | ## description 10 | 11 | Type of the Host metadata. 12 | 13 | ```ts 14 | interface Host {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L223-L223) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/inject-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: InjectDecorator 4 | module: core 5 | --- 6 | 7 | # InjectDecorator 8 | 9 | ## description 10 | 11 | Type of the Inject decorator / constructor function. 12 | 13 | ```ts 14 | interface InjectDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L18-L38) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/input-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: InputDecorator 4 | module: core 5 | --- 6 | 7 | # InputDecorator 8 | 9 | ```ts 10 | interface InputDecorator {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L643-L691) 14 | 15 | ## publicApi 16 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/optional-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: OptionalDecorator 4 | module: core 5 | --- 6 | 7 | # OptionalDecorator 8 | 9 | ## description 10 | 11 | Type of the Optional decorator / constructor function. 12 | 13 | ```ts 14 | interface OptionalDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L66-L86) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/optional.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Optional 4 | module: core 5 | --- 6 | 7 | # Optional 8 | 9 | ## description 10 | 11 | Type of the Optional metadata. 12 | 13 | ```ts 14 | interface Optional {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L93-L93) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/output-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: OutputDecorator 4 | module: core 5 | --- 6 | 7 | # OutputDecorator 8 | 9 | ## description 10 | 11 | Type of the Output decorator / constructor function. 12 | 13 | ```ts 14 | interface OutputDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L717-L736) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/pipe-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: PipeDecorator 4 | module: core 5 | --- 6 | 7 | # PipeDecorator 8 | 9 | ## description 10 | 11 | Type of the Pipe decorator / constructor function. 12 | 13 | ```ts 14 | interface PipeDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L575-L603) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/self-decorator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SelfDecorator 4 | module: core 5 | --- 6 | 7 | # SelfDecorator 8 | 9 | ## description 10 | 11 | Type of the Self decorator / constructor function. 12 | 13 | ```ts 14 | interface SelfDecorator {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L108-L131) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/self.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Self 4 | module: core 5 | --- 6 | 7 | # Self 8 | 9 | ## description 10 | 11 | Type of the Self metadata. 12 | 13 | ```ts 14 | interface Self {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L138-L138) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/skip-self.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SkipSelf 4 | module: core 5 | --- 6 | 7 | # SkipSelf 8 | 9 | ## description 10 | 11 | Type of the `SkipSelf` metadata. 12 | 13 | ```ts 14 | interface SkipSelf {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/metadata.ts#L183-L183) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/interface-declaration/ɵsafe-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ɵSafeValue 4 | module: core 5 | --- 6 | 7 | # ɵSafeValue 8 | 9 | ## description 10 | 11 | Marker interface for a value that's safe to use in a particular context. 12 | 13 | ```ts 14 | interface SafeValue {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/sanitization/bypass.ts#L23-L23) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/content-child.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ContentChild 4 | module: core 5 | --- 6 | 7 | # ContentChild 8 | 9 | ## description 10 | 11 | Type of the ContentChild metadata. 12 | 13 | ```ts 14 | export type ContentChild = Query; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/di.ts#L234-L234) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/view-child.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ViewChild 4 | module: core 5 | --- 6 | 7 | # ViewChild 8 | 9 | ## description 10 | 11 | Type of the ViewChild metadata. 12 | 13 | ```ts 14 | export type ViewChild = Query; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/di.ts#L362-L362) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/view-children.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ViewChildren 4 | module: core 5 | --- 6 | 7 | # ViewChildren 8 | 9 | ## description 10 | 11 | Type of the ViewChildren metadata. 12 | 13 | ```ts 14 | export type ViewChildren = Query; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/di.ts#L292-L292) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/ɵgetter-fn.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ɵGetterFn 4 | module: core 5 | --- 6 | 7 | # ɵGetterFn 8 | 9 | ```ts 10 | export type GetterFn = (obj: any) => any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/reflection/types.ts#L10-L10) 14 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/ɵmethod-fn.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ɵMethodFn 4 | module: core 5 | --- 6 | 7 | # ɵMethodFn 8 | 9 | ```ts 10 | export type MethodFn = (obj: any, args: any[]) => any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/reflection/types.ts#L11-L11) 14 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/ɵɵfactory-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ɵɵFactoryDef 4 | module: core 5 | --- 6 | 7 | # ɵɵFactoryDef 8 | 9 | ```ts 10 | export type ɵɵFactoryDef< 11 | T, 12 | CtorDependencies extends CtorDependency[] 13 | > = () => T; 14 | ``` 15 | 16 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/interfaces/definition.ts#L276-L276) 17 | 18 | ## codeGenApi 19 | -------------------------------------------------------------------------------- /docs/angular/core/type-alias-declaration/ɵɵpipe-def-with-meta.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ɵɵPipeDefWithMeta 4 | module: core 5 | --- 6 | 7 | # ɵɵPipeDefWithMeta 8 | 9 | ```ts 10 | export type ɵɵPipeDefWithMeta = PipeDef; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/interfaces/definition.ts#L434-L434) 14 | 15 | ## codeGenApi 16 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/analyze-for-entry-components.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ANALYZE_FOR_ENTRY_COMPONENTS 4 | module: core 5 | --- 6 | 7 | # ANALYZE_FOR_ENTRY_COMPONENTS 8 | 9 | ```ts 10 | const ANALYZE_FOR_ENTRY_COMPONENTS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/di.ts#L50-L50) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/app-bootstrap-listener.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: APP_BOOTSTRAP_LISTENER 4 | module: core 5 | --- 6 | 7 | # APP_BOOTSTRAP_LISTENER 8 | 9 | ```ts 10 | const APP_BOOTSTRAP_LISTENER: InjectionToken< 11 | ((compRef: ComponentRef) => void)[] 12 | >; 13 | ``` 14 | 15 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_tokens.ts#L66-L67) 16 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/app-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: APP_ID 4 | module: core 5 | --- 6 | 7 | # APP_ID 8 | 9 | ```ts 10 | const APP_ID: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_tokens.ts#L24-L24) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/app-initializer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: APP_INITIALIZER 4 | module: core 5 | --- 6 | 7 | # APP_INITIALIZER 8 | 9 | ```ts 10 | const APP_INITIALIZER: InjectionToken<(() => void)[]>; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_init.ts#L31-L31) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/compiler-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: COMPILER_OPTIONS 4 | module: core 5 | --- 6 | 7 | # COMPILER_OPTIONS 8 | 9 | ```ts 10 | const COMPILER_OPTIONS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/linker/compiler.ts#L159-L159) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/custom-elements-schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: CUSTOM_ELEMENTS_SCHEMA 4 | module: core 5 | --- 6 | 7 | # CUSTOM_ELEMENTS_SCHEMA 8 | 9 | ```ts 10 | const CUSTOM_ELEMENTS_SCHEMA: SchemaMetadata; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/schema.ts#L31-L33) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/default-currency-code.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: DEFAULT_CURRENCY_CODE 4 | module: core 5 | --- 6 | 7 | # DEFAULT_CURRENCY_CODE 8 | 9 | ```ts 10 | const DEFAULT_CURRENCY_CODE: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/i18n/tokens.ts#L73-L73) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/define-injectable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: defineInjectable 4 | module: core 5 | --- 6 | 7 | # defineInjectable 8 | 9 | ```ts 10 | const defineInjectable: typeof ɵɵdefineInjectable; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/interface/defs.ts#L158-L158) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/get-debug-node.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getDebugNode 4 | module: core 5 | --- 6 | 7 | # getDebugNode 8 | 9 | ```ts 10 | const getDebugNode: (nativeNode: any) => DebugNode | null; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/debug/debug_node.ts#L745-L745) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/get-module-factory.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: getModuleFactory 4 | module: core 5 | --- 6 | 7 | # getModuleFactory 8 | 9 | ```ts 10 | const getModuleFactory: (id: string) => NgModuleFactory; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/linker/ng_module_factory_loader.ts#L44-L44) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/inject.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: inject 4 | module: core 5 | --- 6 | 7 | # inject 8 | 9 | ```ts 10 | const inject: typeof ɵɵinject; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/injector_compatibility.ts#L167-L167) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/injector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INJECTOR 4 | module: core 5 | --- 6 | 7 | # INJECTOR 8 | 9 | ```ts 10 | const INJECTOR: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/injector_compatibility.ts#L33-L36) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/locale-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCALE_ID 4 | module: core 5 | --- 6 | 7 | # LOCALE_ID 8 | 9 | ```ts 10 | const LOCALE_ID: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/i18n/tokens.ts#L33-L33) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/no-errors-schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NO_ERRORS_SCHEMA 4 | module: core 5 | --- 6 | 7 | # NO_ERRORS_SCHEMA 8 | 9 | ```ts 10 | const NO_ERRORS_SCHEMA: SchemaMetadata; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/schema.ts#L40-L42) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/package-root-url.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PACKAGE_ROOT_URL 4 | module: core 5 | --- 6 | 7 | # PACKAGE_ROOT_URL 8 | 9 | ```ts 10 | const PACKAGE_ROOT_URL: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_tokens.ts#L74-L74) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/platform-core.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: platformCore 4 | module: core 5 | --- 6 | 7 | # platformCore 8 | 9 | ```ts 10 | const platformCore: (extraProviders?: StaticProvider[]) => PlatformRef; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/platform_core_providers.ts#L28-L28) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/platform-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PLATFORM_ID 4 | module: core 5 | --- 6 | 7 | # PLATFORM_ID 8 | 9 | ```ts 10 | const PLATFORM_ID: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_tokens.ts#L54-L54) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/platform-initializer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PLATFORM_INITIALIZER 4 | module: core 5 | --- 6 | 7 | # PLATFORM_INITIALIZER 8 | 9 | ```ts 10 | const PLATFORM_INITIALIZER: InjectionToken<(() => void)[]>; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_tokens.ts#L48-L48) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/translations-format.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLATIONS_FORMAT 4 | module: core 5 | --- 6 | 7 | # TRANSLATIONS_FORMAT 8 | 9 | ```ts 10 | const TRANSLATIONS_FORMAT: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/i18n/tokens.ts#L122-L122) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/translations.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLATIONS 4 | module: core 5 | --- 6 | 7 | # TRANSLATIONS 8 | 9 | ```ts 10 | const TRANSLATIONS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/i18n/tokens.ts#L99-L99) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: Type 4 | module: core 5 | --- 6 | 7 | # Type 8 | 9 | ```ts 10 | const Type: FunctionConstructor; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/interface/type.ts#L19-L19) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: core 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: Version; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/version.ts#L29-L29) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵallow-multiple-platforms.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵALLOW_MULTIPLE_PLATFORMS 4 | module: core 5 | --- 6 | 7 | # ɵALLOW_MULTIPLE_PLATFORMS 8 | 9 | ```ts 10 | const ALLOW_MULTIPLE_PLATFORMS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/application_ref.ts#L123-L123) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵdefault-iterable-differs.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵdefaultIterableDiffers 4 | module: core 5 | --- 6 | 7 | # ɵdefaultIterableDiffers 8 | 9 | ```ts 10 | const defaultIterableDiffers: IterableDiffers; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/change_detection/change_detection.ts#L37-L37) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵdefault-key-value-differs.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵdefaultKeyValueDiffers 4 | module: core 5 | --- 6 | 7 | # ɵdefaultKeyValueDiffers 8 | 9 | ```ts 10 | const defaultKeyValueDiffers: KeyValueDiffers; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/change_detection/change_detection.ts#L39-L39) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵdefault-locale-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵDEFAULT_LOCALE_ID 4 | module: core 5 | --- 6 | 7 | # ɵDEFAULT_LOCALE_ID 8 | 9 | ```ts 10 | const DEFAULT_LOCALE_ID: "en-US"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/i18n/localization.ts#L25-L25) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵempty-array.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵEMPTY_ARRAY 4 | module: core 5 | --- 6 | 7 | # ɵEMPTY_ARRAY 8 | 9 | ```ts 10 | const EMPTY_ARRAY: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/util.ts#L444-L444) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵempty-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵEMPTY_MAP 4 | module: core 5 | --- 6 | 7 | # ɵEMPTY_MAP 8 | 9 | ```ts 10 | const EMPTY_MAP: { [key: string]: any }; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/util.ts#L445-L445) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵget-debug-node-r2.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵgetDebugNodeR2 4 | module: core 5 | --- 6 | 7 | # ɵgetDebugNodeR2 8 | 9 | ```ts 10 | const getDebugNodeR2: (nativeNode: any) => DebugNode | null; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/debug/debug_node.ts#L756-L756) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵglobal.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵglobal 4 | module: core 5 | --- 6 | 7 | # ɵglobal 8 | 9 | ```ts 10 | const _global: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/util/global.ts#L27-L27) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵinjector-scope.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵINJECTOR_SCOPE 4 | module: core 5 | --- 6 | 7 | # ɵINJECTOR_SCOPE 8 | 9 | ```ts 10 | const INJECTOR_SCOPE: InjectionToken<"root" | "platform">; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/scope.ts#L17-L17) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵivy-enabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵivyEnabled 4 | module: core 5 | --- 6 | 7 | # ɵivyEnabled 8 | 9 | ```ts 10 | const ivyEnabled: false; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/ivy_switch.ts#L11-L11) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-comp-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_COMP_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_COMP_DEF 8 | 9 | ```ts 10 | const NG_COMP_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/fields.ts#L11-L11) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-dir-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_DIR_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_DIR_DEF 8 | 9 | ```ts 10 | const NG_DIR_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/fields.ts#L12-L12) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-element-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_ELEMENT_ID 4 | module: core 5 | --- 6 | 7 | # ɵNG_ELEMENT_ID 8 | 9 | ```ts 10 | const NG_ELEMENT_ID: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/fields.ts#L24-L24) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-inj-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_INJ_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_INJ_DEF 8 | 9 | ```ts 10 | const NG_INJ_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/interface/defs.ts#L272-L272) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-mod-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_MOD_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_MOD_DEF 8 | 9 | ```ts 10 | const NG_MOD_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/fields.ts#L14-L14) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-pipe-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_PIPE_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_PIPE_DEF 8 | 9 | ```ts 10 | const NG_PIPE_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render3/fields.ts#L13-L13) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵng-prov-def.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNG_PROV_DEF 4 | module: core 5 | --- 6 | 7 | # ɵNG_PROV_DEF 8 | 9 | ```ts 10 | const NG_PROV_DEF: string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/interface/defs.ts#L271-L271) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵnot-found-check-only-element-injector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR 4 | module: core 5 | --- 6 | 7 | # ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR 8 | 9 | ```ts 10 | const NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR: {}; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/view/provider.ts#L338-L338) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-compile-component--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_COMPILE_COMPONENT__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_COMPILE_COMPONENT**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_COMPILE_COMPONENT__POST_R3__: typeof render3CompileComponent; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L909-L909) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-compile-directive--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_COMPILE_DIRECTIVE**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_COMPILE_DIRECTIVE__POST_R3__: typeof render3CompileDirective; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L910-L910) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-compile-injectable--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_COMPILE_INJECTABLE__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_COMPILE_INJECTABLE**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_COMPILE_INJECTABLE__POST_R3__: typeof render3CompileInjectable; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/di/injectable.ts#L106-L106) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-compile-ngmodule--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_COMPILE_NGMODULE__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_COMPILE_NGMODULE**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_COMPILE_NGMODULE__POST_R3__: typeof render3CompileNgModule; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/ng_module.ts#L362-L362) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-compile-pipe--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_COMPILE_PIPE__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_COMPILE_PIPE**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_COMPILE_PIPE__POST_R3__: typeof render3CompilePipe; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/metadata/directives.ts#L911-L911) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-element-ref-factory--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_ELEMENT_REF_FACTORY**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_ELEMENT_REF_FACTORY__POST_R3__: typeof render3InjectElementRef; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/linker/element_ref.ts#L62-L62) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-ivy-enabled--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_IVY_ENABLED__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_IVY_ENABLED**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_IVY_ENABLED__POST_R3__: true; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/ivy_switch.ts#L9-L9) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-renderer2-factory--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_RENDERER2_FACTORY__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_RENDERER2_FACTORY**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_RENDERER2_FACTORY__POST_R3__: typeof render3InjectRenderer2; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/render/api.ts#L284-L284) 14 | -------------------------------------------------------------------------------- /docs/angular/core/variable-declaration/ɵswitch-template-ref-factory--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__ 4 | module: core 5 | --- 6 | 7 | # ɵSWITCH_TEMPLATE_REF_FACTORY**POST_R3** 8 | 9 | ```ts 10 | const SWITCH_TEMPLATE_REF_FACTORY__POST_R3__: typeof render3InjectTemplateRef; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/core/src/linker/template_ref.ts#L66-L66) 14 | -------------------------------------------------------------------------------- /docs/angular/elements/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: elements 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/elements/src/version.ts#L13-L13) 14 | -------------------------------------------------------------------------------- /docs/angular/forms/variable-declaration/composition-buffer-mode.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: COMPOSITION_BUFFER_MODE 4 | module: forms 5 | --- 6 | 7 | # COMPOSITION_BUFFER_MODE 8 | 9 | ```ts 10 | const COMPOSITION_BUFFER_MODE: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/forms/src/directives/default_value_accessor.ts#L35-L35) 14 | -------------------------------------------------------------------------------- /docs/angular/forms/variable-declaration/ng-async-validators.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NG_ASYNC_VALIDATORS 4 | module: forms 5 | --- 6 | 7 | # NG_ASYNC_VALIDATORS 8 | 9 | ```ts 10 | const NG_ASYNC_VALIDATORS: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/forms/src/validators.ts#L65-L66) 14 | -------------------------------------------------------------------------------- /docs/angular/forms/variable-declaration/ng-validators.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NG_VALIDATORS 4 | module: forms 5 | --- 6 | 7 | # NG_VALIDATORS 8 | 9 | ```ts 10 | const NG_VALIDATORS: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/forms/src/validators.ts#L54-L54) 14 | -------------------------------------------------------------------------------- /docs/angular/forms/variable-declaration/ng-value-accessor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NG_VALUE_ACCESSOR 4 | module: forms 5 | --- 6 | 7 | # NG_VALUE_ACCESSOR 8 | 9 | ```ts 10 | const NG_VALUE_ACCESSOR: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/forms/src/directives/control_value_accessor.ts#L141-L141) 14 | -------------------------------------------------------------------------------- /docs/angular/forms/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: forms 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/forms/src/version.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/language-service/type-alias-declaration/definition.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Definition 4 | module: language-service 5 | --- 6 | 7 | # Definition 8 | 9 | ## description 10 | 11 | A defnition location(s). 12 | 13 | ```ts 14 | export type Definition = Location[] | undefined; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/language-service/src/symbols.ts#L43-L43) 18 | -------------------------------------------------------------------------------- /docs/angular/localize/class-declaration/ɵmissing-translation-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ɵMissingTranslationError 4 | module: localize 5 | --- 6 | 7 | # ɵMissingTranslationError 8 | 9 | ```ts 10 | class MissingTranslationError extends Error {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/localize/src/utils/src/translations.ts#L25-L30) 14 | -------------------------------------------------------------------------------- /docs/angular/localize/function-declaration/clear-translations.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: clearTranslations 4 | module: localize 5 | --- 6 | 7 | # clearTranslations 8 | 9 | ## description 10 | 11 | Remove all translations for `$localize`. 12 | 13 | ```ts 14 | function clearTranslations(); 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/localize/src/translate.ts#L54-L57) 18 | 19 | ## publicApi 20 | -------------------------------------------------------------------------------- /docs/angular/localize/type-alias-declaration/ɵmessage-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ɵMessageId 4 | module: localize 5 | --- 6 | 7 | # ɵMessageId 8 | 9 | ## description 10 | 11 | A string that uniquely identifies a message, to be used for matching translations. 12 | 13 | ```ts 14 | export type MessageId = string; 15 | ``` 16 | 17 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/localize/src/utils/src/messages.ts#L40-L40) 18 | -------------------------------------------------------------------------------- /docs/angular/platform-browser-dynamic/variable-declaration/platform-browser-dynamic.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: platformBrowserDynamic 4 | module: platform-browser-dynamic 5 | --- 6 | 7 | # platformBrowserDynamic 8 | 9 | ```ts 10 | const platformBrowserDynamic: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser-dynamic/src/platform-browser-dynamic.ts#L29-L30) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser-dynamic/variable-declaration/resource-cache-provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: RESOURCE_CACHE_PROVIDER 4 | module: platform-browser-dynamic 5 | --- 6 | 7 | # RESOURCE_CACHE_PROVIDER 8 | 9 | ```ts 10 | const RESOURCE_CACHE_PROVIDER: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser-dynamic/src/platform-browser-dynamic.ts#L23-L24) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser-dynamic/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: platform-browser-dynamic 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser-dynamic/src/version.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser-dynamic/variable-declaration/ɵplatform-core-dynamic.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵplatformCoreDynamic 4 | module: platform-browser-dynamic 5 | --- 6 | 7 | # ɵplatformCoreDynamic 8 | 9 | ```ts 10 | const platformCoreDynamic: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser-dynamic/src/platform_core_dynamic.ts#L18-L21) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/function-declaration/ɵinit-dom-adapter.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: ɵinitDomAdapter 4 | module: platform-browser 5 | --- 6 | 7 | # ɵinitDomAdapter 8 | 9 | ```ts 10 | function initDomAdapter(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/browser.ts#L24-L27) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/event-manager-plugins.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: EVENT_MANAGER_PLUGINS 4 | module: platform-browser 5 | --- 6 | 7 | # EVENT_MANAGER_PLUGINS 8 | 9 | ```ts 10 | const EVENT_MANAGER_PLUGINS: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/events/event_manager.ts#L17-L18) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/hammer-gesture-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: HAMMER_GESTURE_CONFIG 4 | module: platform-browser 5 | --- 6 | 7 | # HAMMER_GESTURE_CONFIG 8 | 9 | ```ts 10 | const HAMMER_GESTURE_CONFIG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/events/hammer_gestures.ts#L64-L64) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/hammer-loader.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: HAMMER_LOADER 4 | module: platform-browser 5 | --- 6 | 7 | # HAMMER_LOADER 8 | 9 | ```ts 10 | const HAMMER_LOADER: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/events/hammer_gestures.ts#L79-L79) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/platform-browser.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: platformBrowser 4 | module: platform-browser 5 | --- 6 | 7 | # platformBrowser 8 | 9 | ```ts 10 | const platformBrowser: (extraProviders?: StaticProvider[]) => any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/browser.ts#L66-L67) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: platform-browser 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/version.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵbrowser-sanitization-providers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵBROWSER_SANITIZATION_PROVIDERS 4 | module: platform-browser 5 | --- 6 | 7 | # ɵBROWSER_SANITIZATION_PROVIDERS 8 | 9 | ```ts 10 | const BROWSER_SANITIZATION_PROVIDERS: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/browser.ts#L58-L58) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵelement-probe-providers--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵELEMENT_PROBE_PROVIDERS__POST_R3__ 4 | module: platform-browser 5 | --- 6 | 7 | # ɵELEMENT_PROBE_PROVIDERS**POST_R3** 8 | 9 | ```ts 10 | const ELEMENT_PROBE_PROVIDERS__POST_R3__: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/debug/ng_probe.ts#L47-L47) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵelement-probe-providers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵELEMENT_PROBE_PROVIDERS 4 | module: platform-browser 5 | --- 6 | 7 | # ɵELEMENT_PROBE_PROVIDERS 8 | 9 | ```ts 10 | const ELEMENT_PROBE_PROVIDERS: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/debug/ng_probe.ts#L63-L63) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵhammer-providers--post-r3--.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵHAMMER_PROVIDERS__POST_R3__ 4 | module: platform-browser 5 | --- 6 | 7 | # ɵHAMMER_PROVIDERS**POST_R3** 8 | 9 | ```ts 10 | const HAMMER_PROVIDERS__POST_R3__: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/events/hammer_gestures.ts#L261-L261) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵinternal-browser-platform-providers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS 4 | module: platform-browser 5 | --- 6 | 7 | # ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS 8 | 9 | ```ts 10 | const INTERNAL_BROWSER_PLATFORM_PROVIDERS: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/browser.ts#L39-L43) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵnamespace-uris.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵNAMESPACE_URIS 4 | module: platform-browser 5 | --- 6 | 7 | # ɵNAMESPACE_URIS 8 | 9 | ```ts 10 | const NAMESPACE_URIS: { [ns: string]: string }; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/dom/dom_renderer.ts#L14-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/platform-browser/variable-declaration/ɵtransition-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵTRANSITION_ID 4 | module: platform-browser 5 | --- 6 | 7 | # ɵTRANSITION_ID 8 | 9 | ```ts 10 | const TRANSITION_ID: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/platform-browser/src/browser/server-transition.ts#L16-L16) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/primary-outlet.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PRIMARY_OUTLET 4 | module: router 5 | --- 6 | 7 | # PRIMARY_OUTLET 8 | 9 | ```ts 10 | const PRIMARY_OUTLET: "primary"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/shared.ts#L18-L18) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/router-configuration.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_CONFIGURATION 4 | module: router 5 | --- 6 | 7 | # ROUTER_CONFIGURATION 8 | 9 | ```ts 10 | const ROUTER_CONFIGURATION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/router_module.ts#L41-L41) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/router-initializer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_INITIALIZER 4 | module: router 5 | --- 6 | 7 | # ROUTER_INITIALIZER 8 | 9 | ```ts 10 | const ROUTER_INITIALIZER: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/router_module.ts#L595-L596) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/routes.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTES 4 | module: router 5 | --- 6 | 7 | # ROUTES 8 | 9 | ```ts 10 | const ROUTES: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/router_config_loader.ts#L21-L21) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: VERSION 4 | module: router 5 | --- 6 | 7 | # VERSION 8 | 9 | ```ts 10 | const VERSION: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/version.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/angular/router/variable-declaration/ɵrouter-providers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ɵROUTER_PROVIDERS 4 | module: router 5 | --- 6 | 7 | # ɵROUTER_PROVIDERS 8 | 9 | ```ts 10 | const ROUTER_PROVIDERS: any[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/timdeschryver/angular/blob/master/packages/router/src/router_module.ts#L48-L67) 14 | -------------------------------------------------------------------------------- /docs/msw/src/async-response-resolver-return-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: AsyncResponseResolverReturnType 4 | module: src 5 | --- 6 | 7 | # AsyncResponseResolverReturnType 8 | 9 | ```ts 10 | export type AsyncResponseResolverReturnType = 11 | | Promise> 12 | | ResponseResolverReturnType; 13 | ``` 14 | 15 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/utils/handlers/requestHandler.ts#L44-L46) 16 | -------------------------------------------------------------------------------- /docs/msw/src/graph-qlrequest-payload.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: GraphQLRequestPayload 4 | module: src 5 | --- 6 | 7 | # GraphQLRequestPayload 8 | 9 | ```ts 10 | interface GraphQLRequestPayload { 11 | query: string; 12 | variables?: VariablesType; 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/graphql.ts#L61-L64) 17 | -------------------------------------------------------------------------------- /docs/msw/src/graphql-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: graphqlContext 4 | module: src 5 | --- 6 | 7 | # graphqlContext 8 | 9 | ```ts 10 | const graphqlContext: GraphQLMockedContext; 11 | ``` 12 | 13 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/graphql.ts#L46-L53) 14 | -------------------------------------------------------------------------------- /docs/msw/src/mocked-response.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: MockedResponse 4 | module: src 5 | --- 6 | 7 | # MockedResponse 8 | 9 | ```ts 10 | interface MockedResponse { 11 | body: any; 12 | status: number; 13 | statusText: string; 14 | headers: Headers; 15 | once: boolean; 16 | delay?: number; 17 | } 18 | ``` 19 | 20 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/response.ts#L5-L12) 21 | -------------------------------------------------------------------------------- /docs/msw/src/parsed-rest-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ParsedRestRequest 4 | module: src 5 | --- 6 | 7 | # ParsedRestRequest 8 | 9 | ```ts 10 | interface ParsedRestRequest { 11 | match: ReturnType; 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/rest.ts#L48-L50) 16 | -------------------------------------------------------------------------------- /docs/msw/src/request-params.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: RequestParams 4 | module: src 5 | --- 6 | 7 | # RequestParams 8 | 9 | ```ts 10 | export type RequestParams = { 11 | [paramName: string]: any; 12 | }; 13 | ``` 14 | 15 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/utils/handlers/requestHandler.ts#L39-L41) 16 | -------------------------------------------------------------------------------- /docs/msw/src/request-query.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: RequestQuery 4 | module: src 5 | --- 6 | 7 | # RequestQuery 8 | 9 | ```ts 10 | export type RequestQuery = { 11 | [queryName: string]: any; 12 | }; 13 | ``` 14 | 15 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/utils/handlers/requestHandler.ts#L35-L37) 16 | -------------------------------------------------------------------------------- /docs/msw/src/response-resolver-return-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ResponseResolverReturnType 4 | module: src 5 | --- 6 | 7 | # ResponseResolverReturnType 8 | 9 | ```ts 10 | export type ResponseResolverReturnType = R | undefined | void; 11 | ``` 12 | 13 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/utils/handlers/requestHandler.ts#L43-L43) 14 | -------------------------------------------------------------------------------- /docs/msw/src/response-transformer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ResponseTransformer 4 | module: src 5 | --- 6 | 7 | # ResponseTransformer 8 | 9 | ```ts 10 | export type ResponseTransformer = (res: MockedResponse) => MockedResponse; 11 | ``` 12 | 13 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/response.ts#L14-L14) 14 | -------------------------------------------------------------------------------- /docs/msw/src/response.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: response 4 | module: src 5 | --- 6 | 7 | # response 8 | 9 | ```ts 10 | const response: ResponseComposition; 11 | ``` 12 | 13 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/response.ts#L58-L66) 14 | -------------------------------------------------------------------------------- /docs/msw/src/restmethods.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: RESTMethods 4 | module: src 5 | --- 6 | 7 | # RESTMethods 8 | 9 | ```ts 10 | export enum RESTMethods { 11 | GET = "GET", 12 | POST = "POST", 13 | PUT = "PUT", 14 | PATCH = "PATCH", 15 | OPTIONS = "OPTIONS", 16 | DELETE = "DELETE", 17 | } 18 | ``` 19 | 20 | [Link to repo](https://github.com/mswjs/msw/blob/master/src/rest.ts#L27-L34) 21 | -------------------------------------------------------------------------------- /docs/ngrx/component-store/variable-declaration/initial-state-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: initialStateToken 4 | module: component-store 5 | --- 6 | 7 | # initialStateToken 8 | 9 | ```ts 10 | const initialStateToken: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/component-store/src/component-store.ts#L35-L35) 14 | -------------------------------------------------------------------------------- /docs/ngrx/component/class-declaration/reactive-component-module.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ReactiveComponentModule 4 | module: component 5 | --- 6 | 7 | # ReactiveComponentModule 8 | 9 | ```ts 10 | class ReactiveComponentModule {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/component/src/reactive-component.module.ts#L9-L13) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/class-declaration/persistance-canceled.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: PersistanceCanceled 4 | module: data 5 | --- 6 | 7 | # PersistanceCanceled 8 | 9 | ## description 10 | 11 | Persistence operation canceled 12 | 13 | ```ts 14 | class PersistanceCanceled {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/dispatchers/entity-dispatcher.ts#L73-L77) 18 | -------------------------------------------------------------------------------- /docs/ngrx/data/enum-declaration/change-set-operation.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: ChangeSetOperation 4 | module: data 5 | --- 6 | 7 | # ChangeSetOperation 8 | 9 | ```ts 10 | export enum ChangeSetOperation { 11 | Add = "Add", 12 | Delete = "Delete", 13 | Update = "Update", 14 | Upsert = "Upsert", 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/actions/entity-cache-change-set.ts#L3-L8) 19 | -------------------------------------------------------------------------------- /docs/ngrx/data/function-declaration/get-guid.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: getGuid 4 | module: data 5 | --- 6 | 7 | # getGuid 8 | 9 | ```ts 10 | function getGuid(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/utils/guid-fns.ts#L30-L32) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-cache-commands.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityCacheCommands 4 | module: data 5 | --- 6 | 7 | # EntityCacheCommands 8 | 9 | ```ts 10 | interface EntityCacheCommands {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/dispatchers/entity-commands.ts#L118-L242) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-cache.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityCache 4 | module: data 5 | --- 6 | 7 | # EntityCache 8 | 9 | ```ts 10 | interface EntityCache {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/entity-cache.ts#L3-L6) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-collection-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityCollectionReducers 4 | module: data 5 | --- 6 | 7 | # EntityCollectionReducers 8 | 9 | ```ts 10 | interface EntityCollectionReducers {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/entity-collection-reducer-registry.ts#L13-L15) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-commands.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityCommands 4 | module: data 5 | --- 6 | 7 | # EntityCommands 8 | 9 | ```ts 10 | interface EntityCommands { 11 | // inherited from EntityServerCommands 12 | // inherited from EntityCacheCommands 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/dispatchers/entity-commands.ts#L245-L247) 17 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-definitions.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityDefinitions 4 | module: data 5 | --- 6 | 7 | # EntityDefinitions 8 | 9 | ```ts 10 | interface EntityDefinitions {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/entity-metadata/entity-definition.service.ts#L10-L12) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-metadata-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityMetadataMap 4 | module: data 5 | --- 6 | 7 | # EntityMetadataMap 8 | 9 | ```ts 10 | interface EntityMetadataMap {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/entity-metadata/entity-metadata.ts#L24-L26) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-plural-names.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityPluralNames 4 | module: data 5 | --- 6 | 7 | # EntityPluralNames 8 | 9 | ## description 10 | 11 | Mapping of entity type name to its plural 12 | 13 | ```ts 14 | interface EntityPluralNames {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/utils/interfaces.ts#L12-L14) 18 | -------------------------------------------------------------------------------- /docs/ngrx/data/interface-declaration/entity-server-commands.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EntityServerCommands 4 | module: data 5 | --- 6 | 7 | # EntityServerCommands 8 | 9 | ```ts 10 | interface EntityServerCommands {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/dispatchers/entity-commands.ts#L6-L114) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/type-alias-declaration/entity-cache-selector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: EntityCacheSelector 4 | module: data 5 | --- 6 | 7 | # EntityCacheSelector 8 | 9 | ```ts 10 | export type EntityCacheSelector = MemoizedSelector; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/selectors/entity-cache-selector.ts#L19-L19) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/type-alias-declaration/http-methods.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: HttpMethods 4 | module: data 5 | --- 6 | 7 | # HttpMethods 8 | 9 | ```ts 10 | export type HttpMethods = "DELETE" | "GET" | "POST" | "PUT"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/dataservices/interfaces.ts#L16-L16) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/change-set-item-factory.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: changeSetItemFactory 4 | module: data 5 | --- 6 | 7 | # changeSetItemFactory 8 | 9 | ```ts 10 | const changeSetItemFactory: ChangeSetItemFactory; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/actions/entity-cache-change-set.ts#L101-L101) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-cache-meta-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_CACHE_META_REDUCERS 4 | module: data 5 | --- 6 | 7 | # ENTITY_CACHE_META_REDUCERS 8 | 9 | ```ts 10 | const ENTITY_CACHE_META_REDUCERS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/constants.ts#L10-L12) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-cache-name-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_CACHE_NAME_TOKEN 4 | module: data 5 | --- 6 | 7 | # ENTITY_CACHE_NAME_TOKEN 8 | 9 | ```ts 10 | const ENTITY_CACHE_NAME_TOKEN: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/constants.ts#L6-L8) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-cache-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_CACHE_NAME 4 | module: data 5 | --- 6 | 7 | # ENTITY_CACHE_NAME 8 | 9 | ```ts 10 | const ENTITY_CACHE_NAME: "entityCache"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/constants.ts#L5-L5) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-cache-selector-provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: entityCacheSelectorProvider 4 | module: data 5 | --- 6 | 7 | # entityCacheSelectorProvider 8 | 9 | ```ts 10 | const entityCacheSelectorProvider: FactoryProvider; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/selectors/entity-cache-selector.ts#L13-L17) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-cache-selector-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_CACHE_SELECTOR_TOKEN 4 | module: data 5 | --- 6 | 7 | # ENTITY_CACHE_SELECTOR_TOKEN 8 | 9 | ```ts 10 | const ENTITY_CACHE_SELECTOR_TOKEN: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/selectors/entity-cache-selector.ts#L9-L11) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-collection-meta-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_COLLECTION_META_REDUCERS 4 | module: data 5 | --- 6 | 7 | # ENTITY_COLLECTION_META_REDUCERS 8 | 9 | ```ts 10 | const ENTITY_COLLECTION_META_REDUCERS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/constants.ts#L13-L15) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/entity-metadata-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ENTITY_METADATA_TOKEN 4 | module: data 5 | --- 6 | 7 | # ENTITY_METADATA_TOKEN 8 | 9 | ```ts 10 | const ENTITY_METADATA_TOKEN: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/entity-metadata/entity-metadata.ts#L8-L10) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/initial-entity-cache-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INITIAL_ENTITY_CACHE_STATE 4 | module: data 5 | --- 6 | 7 | # INITIAL_ENTITY_CACHE_STATE 8 | 9 | ```ts 10 | const INITIAL_ENTITY_CACHE_STATE: InjectionToken< 11 | EntityCache | (() => EntityCache) 12 | >; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/reducers/constants.ts#L17-L19) 16 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/op-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: OP_ERROR 4 | module: data 5 | --- 6 | 7 | # OP_ERROR 8 | 9 | ```ts 10 | const OP_ERROR: "/error"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/actions/entity-op.ts#L90-L90) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/op-success.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: OP_SUCCESS 4 | module: data 5 | --- 6 | 7 | # OP_SUCCESS 8 | 9 | ```ts 10 | const OP_SUCCESS: "/success"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/actions/entity-op.ts#L87-L87) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/persist-ops.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: persistOps 4 | module: data 5 | --- 6 | 7 | # persistOps 8 | 9 | ```ts 10 | const persistOps: EntityOp[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/effects/entity-effects.ts#L19-L28) 14 | -------------------------------------------------------------------------------- /docs/ngrx/data/variable-declaration/plural-names-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PLURAL_NAMES_TOKEN 4 | module: data 5 | --- 6 | 7 | # PLURAL_NAMES_TOKEN 8 | 9 | ```ts 10 | const PLURAL_NAMES_TOKEN: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/data/src/utils/interfaces.ts#L16-L18) 14 | -------------------------------------------------------------------------------- /docs/ngrx/effects/class-declaration/effects-feature-module.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: EffectsFeatureModule 4 | module: effects 5 | --- 6 | 7 | # EffectsFeatureModule 8 | 9 | ```ts 10 | class EffectsFeatureModule {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/effects/src/effects_feature_module.ts#L6-L20) 14 | -------------------------------------------------------------------------------- /docs/ngrx/effects/type-alias-declaration/effects-metadata.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: EffectsMetadata 4 | module: effects 5 | --- 6 | 7 | # EffectsMetadata 8 | 9 | ```ts 10 | export type EffectsMetadata = { 11 | [key in EffectPropertyKey]?: EffectConfig; 12 | }; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/effects/src/models.ts#L37-L39) 16 | -------------------------------------------------------------------------------- /docs/ngrx/effects/variable-declaration/effects-error-handler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: EFFECTS_ERROR_HANDLER 4 | module: effects 5 | --- 6 | 7 | # EFFECTS_ERROR_HANDLER 8 | 9 | ```ts 10 | const EFFECTS_ERROR_HANDLER: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/effects/src/tokens.ts#L25-L27) 14 | -------------------------------------------------------------------------------- /docs/ngrx/effects/variable-declaration/root-effects-init.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: rootEffectsInit 4 | module: effects 5 | --- 6 | 7 | # rootEffectsInit 8 | 9 | ```ts 10 | const rootEffectsInit: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/effects/src/effects_root_module.ts#L14-L14) 14 | -------------------------------------------------------------------------------- /docs/ngrx/effects/variable-declaration/user-provided-effects.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: USER_PROVIDED_EFFECTS 4 | module: effects 5 | --- 6 | 7 | # USER_PROVIDED_EFFECTS 8 | 9 | ```ts 10 | const USER_PROVIDED_EFFECTS: InjectionToken[][]>; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/effects/src/tokens.ts#L10-L12) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/class-declaration/dictionary.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: Dictionary 4 | module: entity 5 | --- 6 | 7 | # Dictionary 8 | 9 | ```ts 10 | class Dictionary implements DictionaryNum {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L12-L14) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/comparer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Comparer 4 | module: entity 5 | --- 6 | 7 | # Comparer 8 | 9 | ```ts 10 | export type Comparer = (a: T, b: T) => number; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L1-L1) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/entity-map-one.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: EntityMapOne 4 | module: entity 5 | --- 6 | 7 | # EntityMapOne 8 | 9 | ```ts 10 | export type EntityMapOne = EntityMapOneNum | EntityMapOneStr; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L42-L42) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/entity-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: EntityMap 4 | module: entity 5 | --- 6 | 7 | # EntityMap 8 | 9 | ```ts 10 | export type EntityMap = (entity: T) => T; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L30-L30) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/id-selector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: IdSelector 4 | module: entity 5 | --- 6 | 7 | # IdSelector 8 | 9 | ```ts 10 | export type IdSelector = IdSelectorStr | IdSelectorNum; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L6-L6) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/predicate.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Predicate 4 | module: entity 5 | --- 6 | 7 | # Predicate 8 | 9 | ```ts 10 | export type Predicate = (entity: T) => boolean; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L28-L28) 14 | -------------------------------------------------------------------------------- /docs/ngrx/entity/type-alias-declaration/update.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Update 4 | module: entity 5 | --- 6 | 7 | # Update 8 | 9 | ```ts 10 | export type Update = UpdateStr | UpdateNum; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/entity/src/models.ts#L26-L26) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/enum-declaration/navigation-action-timing.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: EnumDeclaration 3 | name: NavigationActionTiming 4 | module: router-store 5 | --- 6 | 7 | # NavigationActionTiming 8 | 9 | ```ts 10 | export enum NavigationActionTiming { 11 | PreActivation = 1, 12 | PostActivation = 2, 13 | } 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/router_store_module.ts#L79-L82) 17 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/default-router-featurename.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: DEFAULT_ROUTER_FEATURENAME 4 | module: router-store 5 | --- 6 | 7 | # DEFAULT_ROUTER_FEATURENAME 8 | 9 | ```ts 10 | const DEFAULT_ROUTER_FEATURENAME: "router"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/router_store_module.ts#L90-L90) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-cancel-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: routerCancelAction 4 | module: router-store 5 | --- 6 | 7 | # routerCancelAction 8 | 9 | ```ts 10 | const routerCancelAction: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L100-L103) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-cancel.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_CANCEL 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_CANCEL 8 | 9 | ```ts 10 | const ROUTER_CANCEL: "@ngrx/router-store/cancel"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L75-L75) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_CONFIG 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_CONFIG 8 | 9 | ```ts 10 | const ROUTER_CONFIG: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/router_store_module.ts#L87-L89) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-error-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: routerErrorAction 4 | module: router-store 5 | --- 6 | 7 | # routerErrorAction 8 | 9 | ```ts 10 | const routerErrorAction: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L133-L136) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_ERROR 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_ERROR 8 | 9 | ```ts 10 | const ROUTER_ERROR: "@ngrx/router-store/error"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L108-L108) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-navigated-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: routerNavigatedAction 4 | module: router-store 5 | --- 6 | 7 | # routerNavigatedAction 8 | 9 | ```ts 10 | const routerNavigatedAction: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L163-L166) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-navigated.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_NAVIGATED 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_NAVIGATED 8 | 9 | ```ts 10 | const ROUTER_NAVIGATED: "@ngrx/router-store/navigated"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L141-L141) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-navigation-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: routerNavigationAction 4 | module: router-store 5 | --- 6 | 7 | # routerNavigationAction 8 | 9 | ```ts 10 | const routerNavigationAction: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L67-L70) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-navigation.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_NAVIGATION 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_NAVIGATION 8 | 9 | ```ts 10 | const ROUTER_NAVIGATION: "@ngrx/router-store/navigation"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L45-L45) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-request-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: routerRequestAction 4 | module: router-store 5 | --- 6 | 7 | # routerRequestAction 8 | 9 | ```ts 10 | const routerRequestAction: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L38-L41) 14 | -------------------------------------------------------------------------------- /docs/ngrx/router-store/variable-declaration/router-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: ROUTER_REQUEST 4 | module: router-store 5 | --- 6 | 7 | # ROUTER_REQUEST 8 | 9 | ```ts 10 | const ROUTER_REQUEST: "@ngrx/router-store/request"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/router-store/src/actions.ts#L16-L16) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store-devtools/type-alias-declaration/store-devtools-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: StoreDevtoolsOptions 4 | module: store-devtools 5 | --- 6 | 7 | # StoreDevtoolsOptions 8 | 9 | ```ts 10 | export type StoreDevtoolsOptions = 11 | | Partial 12 | | (() => Partial); 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store-devtools/src/config.ts#L48-L50) 16 | -------------------------------------------------------------------------------- /docs/ngrx/store-devtools/variable-declaration/initial-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INITIAL_OPTIONS 4 | module: store-devtools 5 | --- 6 | 7 | # INITIAL_OPTIONS 8 | 9 | ```ts 10 | const INITIAL_OPTIONS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store-devtools/src/config.ts#L44-L46) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store-devtools/variable-declaration/recompute.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: RECOMPUTE 4 | module: store-devtools 5 | --- 6 | 7 | # RECOMPUTE 8 | 9 | ```ts 10 | const RECOMPUTE: "@ngrx/store-devtools/recompute"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store-devtools/src/reducer.ts#L22-L22) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/class-declaration/reducer-manager-dispatcher.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ReducerManagerDispatcher 4 | module: store 5 | --- 6 | 7 | # ReducerManagerDispatcher 8 | 9 | ```ts 10 | class ReducerManagerDispatcher extends ActionsSubject {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/reducer_manager.ts#L22-L22) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/class-declaration/reducer-observable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: ReducerObservable 4 | module: store 5 | --- 6 | 7 | # ReducerObservable 8 | 9 | ```ts 10 | class ReducerObservable extends Observable> {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/reducer_manager.ts#L19-L21) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/class-declaration/state-observable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: StateObservable 4 | module: store 5 | --- 6 | 7 | # StateObservable 8 | 9 | ```ts 10 | class StateObservable extends Observable {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/state.ts#L16-L16) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/class-declaration/store-root-module.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: StoreRootModule 4 | module: store 5 | --- 6 | 7 | # StoreRootModule 8 | 9 | ```ts 10 | class StoreRootModule {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/store_module.ts#L60-L74) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/function-declaration/is-ngrx-mock-environment.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isNgrxMockEnvironment 4 | module: store 5 | --- 6 | 7 | # isNgrxMockEnvironment 8 | 9 | ```ts 10 | function isNgrxMockEnvironment(): boolean; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/flags.ts#L5-L7) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/function-declaration/props.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: props 4 | module: store 5 | --- 6 | 7 | # props 8 | 9 | ```ts 10 | function props

(): Props

; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/action_creator.ts#L127-L129) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/interface-declaration/action-reducer-factory.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ActionReducerFactory 4 | module: store 5 | --- 6 | 7 | # ActionReducerFactory 8 | 9 | ```ts 10 | interface ActionReducerFactory {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L30-L35) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/interface-declaration/action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Action 4 | module: store 5 | --- 6 | 7 | # Action 8 | 9 | ```ts 10 | interface Action { 11 | type: string; 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L1-L3) 16 | 17 | ## Properties 18 | 19 | | Name | Type | Description | 20 | | ---- | -------- | ----------- | 21 | | type | `string` | | 22 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/action-reducer-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ActionReducerMap 4 | module: store 5 | --- 6 | 7 | # ActionReducerMap 8 | 9 | ```ts 10 | export type ActionReducerMap = { 11 | [p in keyof T]: ActionReducer; 12 | }; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L26-L28) 16 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/action-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ActionType 4 | module: store 5 | --- 6 | 7 | # ActionType 8 | 9 | ```ts 10 | export type ActionType = A extends ActionCreator 11 | ? ReturnType & { type: T } 12 | : never; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L10-L12) 16 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/default-projector-fn.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: DefaultProjectorFn 4 | module: store 5 | --- 6 | 7 | # DefaultProjectorFn 8 | 9 | ```ts 10 | export type DefaultProjectorFn = (...args: any[]) => T; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/selector.ts#L18-L18) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/memoize-fn.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: MemoizeFn 4 | module: store 5 | --- 6 | 7 | # MemoizeFn 8 | 9 | ```ts 10 | export type MemoizeFn = (t: AnyFn) => MemoizedProjection; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/selector.ts#L14-L14) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/meta-reducer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: MetaReducer 4 | module: store 5 | --- 6 | 7 | # MetaReducer 8 | 9 | ```ts 10 | export type MetaReducer = ( 11 | reducer: ActionReducer 12 | ) => ActionReducer; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L37-L39) 16 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/selector-with-props.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: SelectorWithProps 4 | module: store 5 | --- 6 | 7 | # SelectorWithProps 8 | 9 | ```ts 10 | export type SelectorWithProps = ( 11 | state: State, 12 | props: Props 13 | ) => Result; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L51-L54) 17 | -------------------------------------------------------------------------------- /docs/ngrx/store/type-alias-declaration/selector.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Selector 4 | module: store 5 | --- 6 | 7 | # Selector 8 | 9 | ```ts 10 | export type Selector = (state: T) => V; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/models.ts#L49-L49) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/feature-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: FEATURE_REDUCERS 4 | module: store 5 | --- 6 | 7 | # FEATURE_REDUCERS 8 | 9 | ```ts 10 | const FEATURE_REDUCERS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L42-L44) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/init.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INIT 4 | module: store 5 | --- 6 | 7 | # INIT 8 | 9 | ```ts 10 | const INIT: "@ngrx/store/init"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/actions_subject.ts#L6-L6) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/initial-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INITIAL_REDUCERS 4 | module: store 5 | --- 6 | 7 | # INITIAL_REDUCERS 8 | 9 | ```ts 10 | const INITIAL_REDUCERS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L17-L19) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/initial-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: INITIAL_STATE 4 | module: store 5 | --- 6 | 7 | # INITIAL_STATE 8 | 9 | ```ts 10 | const INITIAL_STATE: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L10-L10) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/meta-reducers.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: META_REDUCERS 4 | module: store 5 | --- 6 | 7 | # META_REDUCERS 8 | 9 | ```ts 10 | const META_REDUCERS: InjectionToken< 11 | MetaReducer< 12 | any, 13 | import("C:/Users/tdeschryver/dev/platform/modules/store/src/models").Action 14 | >[] 15 | >; 16 | ``` 17 | 18 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L56-L58) 19 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/reducer-factory.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: REDUCER_FACTORY 4 | module: store 5 | --- 6 | 7 | # REDUCER_FACTORY 8 | 9 | ```ts 10 | const REDUCER_FACTORY: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L11-L13) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/store-features.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: STORE_FEATURES 4 | module: store 5 | --- 6 | 7 | # STORE_FEATURES 8 | 9 | ```ts 10 | const STORE_FEATURES: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L23-L23) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/update.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: UPDATE 4 | module: store 5 | --- 6 | 7 | # UPDATE 8 | 9 | ```ts 10 | const UPDATE: "@ngrx/store/update-reducers"; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/reducer_manager.ts#L23-L23) 14 | -------------------------------------------------------------------------------- /docs/ngrx/store/variable-declaration/user-runtime-checks.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: USER_RUNTIME_CHECKS 4 | module: store 5 | --- 6 | 7 | # USER_RUNTIME_CHECKS 8 | 9 | ```ts 10 | const USER_RUNTIME_CHECKS: InjectionToken; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/src/tokens.ts#L72-L74) 14 | -------------------------------------------------------------------------------- /docs/ngrx/testing/class-declaration/mock-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: MockState 4 | module: testing 5 | --- 6 | 7 | # MockState 8 | 9 | ```ts 10 | class MockState extends BehaviorSubject {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngrx/platform/blob/master/modules/store/testing/src/mock_state.ts#L4-L9) 14 | -------------------------------------------------------------------------------- /docs/rxjs/operators/flat-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: flatMap 4 | module: operators 5 | --- 6 | 7 | # flatMap 8 | 9 | ```ts 10 | const flatMap: typeof mergeMap; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/mergeMap.ts#L166-L166) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/animation-frame-scheduler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: animationFrameScheduler 4 | module: src 5 | --- 6 | 7 | # animationFrameScheduler 8 | 9 | ```ts 10 | const animationFrameScheduler: AnimationFrameScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/animationFrame.ts#L36-L36) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/animation-frame.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: animationFrame 4 | module: src 5 | --- 6 | 7 | # animationFrame 8 | 9 | ```ts 10 | const animationFrame: AnimationFrameScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/animationFrame.ts#L41-L41) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/argument-out-of-range-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ArgumentOutOfRangeError 4 | module: src 5 | --- 6 | 7 | # ArgumentOutOfRangeError 8 | 9 | ```ts 10 | interface ArgumentOutOfRangeError { 11 | // inherited from Error 12 | name: string; 13 | message: string; 14 | stack?: string; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/ArgumentOutOfRangeError.ts#L1-L2) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/asap-scheduler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: asapScheduler 4 | module: src 5 | --- 6 | 7 | # asapScheduler 8 | 9 | ```ts 10 | const asapScheduler: AsapScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/asap.ts#L39-L39) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/asap.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: asap 4 | module: src 5 | --- 6 | 7 | # asap 8 | 9 | ```ts 10 | const asap: AsapScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/asap.ts#L44-L44) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/async-scheduler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: asyncScheduler 4 | module: src 5 | --- 6 | 7 | # asyncScheduler 8 | 9 | ```ts 10 | const asyncScheduler: AsyncScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/async.ts#L51-L51) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/async.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: async 4 | module: src 5 | --- 6 | 7 | # async 8 | 9 | ```ts 10 | const async: AsyncScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/async.ts#L56-L56) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/completion-observer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: CompletionObserver 4 | module: src 5 | --- 6 | 7 | # CompletionObserver 8 | 9 | ```ts 10 | interface CompletionObserver { 11 | closed?: boolean; 12 | next?: (value: T) => void; 13 | error?: (err: any) => void; 14 | complete: () => void; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L135-L140) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: config 4 | module: src 5 | --- 6 | 7 | # config 8 | 9 | ```ts 10 | const config: { 11 | quietBadConfig: boolean; 12 | Promise: PromiseConstructorLike; 13 | useDeprecatedSynchronousErrorHandling: boolean; 14 | useDeprecatedNextContext: boolean; 15 | }; 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/config.ts#L9-L97) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/empty-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: EmptyError 4 | module: src 5 | --- 6 | 7 | # EmptyError 8 | 9 | ```ts 10 | interface EmptyError { 11 | // inherited from Error 12 | name: string; 13 | message: string; 14 | stack?: string; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/EmptyError.ts#L1-L2) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/empty.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: EMPTY 4 | module: src 5 | --- 6 | 7 | # EMPTY 8 | 9 | ```ts 10 | const EMPTY: Observable; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/empty.ts#L28-L28) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/error-observer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ErrorObserver 4 | module: src 5 | --- 6 | 7 | # ErrorObserver 8 | 9 | ```ts 10 | interface ErrorObserver { 11 | closed?: boolean; 12 | next?: (value: T) => void; 13 | error: (err: any) => void; 14 | complete?: () => void; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L128-L133) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/factory-or-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: FactoryOrValue 4 | module: src 5 | --- 6 | 7 | # FactoryOrValue 8 | 9 | ```ts 10 | export type FactoryOrValue = T | (() => T); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L10-L10) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/identity.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: identity 4 | module: src 5 | --- 6 | 7 | # identity 8 | 9 | ```ts 10 | function identity(x: T): T; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/identity.ts#L1-L3) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---- | ---- | ----------- | 19 | | x | `T` | | 20 | -------------------------------------------------------------------------------- /docs/rxjs/src/interop-observable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: InteropObservable 4 | module: src 5 | --- 6 | 7 | # InteropObservable 8 | 9 | ```ts 10 | export type InteropObservable = { 11 | [Symbol.observable]: () => Subscribable; 12 | }; 13 | ``` 14 | 15 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L81-L81) 16 | -------------------------------------------------------------------------------- /docs/rxjs/src/mono-type-operator-function.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: MonoTypeOperatorFunction 4 | module: src 5 | --- 6 | 7 | # MonoTypeOperatorFunction 8 | 9 | ```ts 10 | interface MonoTypeOperatorFunction { 11 | // inherited from OperatorFunction 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L12-L12) 16 | -------------------------------------------------------------------------------- /docs/rxjs/src/never.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: NEVER 4 | module: src 5 | --- 6 | 7 | # NEVER 8 | 9 | ```ts 10 | const NEVER: Observable; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/never.ts#L34-L34) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/next-observer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: NextObserver 4 | module: src 5 | --- 6 | 7 | # NextObserver 8 | 9 | ```ts 10 | interface NextObserver { 11 | closed?: boolean; 12 | next: (value: T) => void; 13 | error?: (err: any) => void; 14 | complete?: () => void; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L121-L126) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/noop.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: noop 4 | module: src 5 | --- 6 | 7 | # noop 8 | 9 | ```ts 10 | function noop(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/noop.ts#L2-L2) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/not-found-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: NotFoundError 4 | module: src 5 | --- 6 | 7 | # NotFoundError 8 | 9 | ```ts 10 | interface NotFoundError { 11 | // inherited from Error 12 | name: string; 13 | message: string; 14 | stack?: string; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/NotFoundError.ts#L1-L2) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/object-unsubscribed-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: ObjectUnsubscribedError 4 | module: src 5 | --- 6 | 7 | # ObjectUnsubscribedError 8 | 9 | ```ts 10 | interface ObjectUnsubscribedError { 11 | // inherited from Error 12 | name: string; 13 | message: string; 14 | stack?: string; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/ObjectUnsubscribedError.ts#L1-L2) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/observable-input.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ObservableInput 4 | module: src 5 | --- 6 | 7 | # ObservableInput 8 | 9 | ```ts 10 | export type ObservableInput = 11 | | SubscribableOrPromise 12 | | ArrayLike 13 | | Iterable 14 | | AsyncIterableIterator; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L76-L76) 18 | -------------------------------------------------------------------------------- /docs/rxjs/src/observable-like.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ObservableLike 4 | module: src 5 | --- 6 | 7 | # ObservableLike 8 | 9 | ```ts 10 | export type ObservableLike = InteropObservable; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L79-L79) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/observable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: observable 4 | module: src 5 | --- 6 | 7 | # observable 8 | 9 | ```ts 10 | const observable: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/symbol/observable.ts#L11-L11) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/observed-values-from-array.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ObservedValuesFromArray 4 | module: src 5 | --- 6 | 7 | # ObservedValuesFromArray 8 | 9 | ```ts 10 | export type ObservedValuesFromArray = ObservedValueUnionFromArray; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L195-L195) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/observer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Observer 4 | module: src 5 | --- 6 | 7 | # Observer 8 | 9 | ```ts 10 | interface Observer { 11 | closed?: boolean; 12 | next: (value: T) => void; 13 | error: (err: any) => void; 14 | complete: () => void; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L144-L149) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/operator-function.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: OperatorFunction 4 | module: src 5 | --- 6 | 7 | # OperatorFunction 8 | 9 | ```ts 10 | interface OperatorFunction { 11 | // inherited from UnaryFunction 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L8-L8) 16 | -------------------------------------------------------------------------------- /docs/rxjs/src/operator.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Operator 4 | module: src 5 | --- 6 | 7 | # Operator 8 | 9 | ```ts 10 | interface Operator {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/Operator.ts#L7-L9) 14 | 15 | ## deprecated 16 | 17 | Internal implementation detail, do not use. 18 | -------------------------------------------------------------------------------- /docs/rxjs/src/partial-observer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: PartialObserver 4 | module: src 5 | --- 6 | 7 | # PartialObserver 8 | 9 | ```ts 10 | export type PartialObserver = 11 | | NextObserver 12 | | ErrorObserver 13 | | CompletionObserver; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L142-L142) 17 | -------------------------------------------------------------------------------- /docs/rxjs/src/queue-scheduler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queueScheduler 4 | module: src 5 | --- 6 | 7 | # queueScheduler 8 | 9 | ```ts 10 | const queueScheduler: QueueScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/queue.ts#L67-L67) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/queue.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: queue 4 | module: src 5 | --- 6 | 7 | # queue 8 | 9 | ```ts 10 | const queue: QueueScheduler; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/scheduler/queue.ts#L72-L72) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/scheduler-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SchedulerAction 4 | module: src 5 | --- 6 | 7 | # SchedulerAction 8 | 9 | ```ts 10 | interface SchedulerAction {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L157-L159) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/scheduler-like.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SchedulerLike 4 | module: src 5 | --- 6 | 7 | # SchedulerLike 8 | 9 | ```ts 10 | interface SchedulerLike { 11 | // inherited from TimestampProvider 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L153-L155) 16 | -------------------------------------------------------------------------------- /docs/rxjs/src/sequence-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SequenceError 4 | module: src 5 | --- 6 | 7 | # SequenceError 8 | 9 | ```ts 10 | interface SequenceError { 11 | // inherited from Error 12 | name: string; 13 | message: string; 14 | stack?: string; 15 | } 16 | ``` 17 | 18 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/util/SequenceError.ts#L1-L2) 19 | -------------------------------------------------------------------------------- /docs/rxjs/src/subscribable-or-promise.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: SubscribableOrPromise 4 | module: src 5 | --- 6 | 7 | # SubscribableOrPromise 8 | 9 | ```ts 10 | export type SubscribableOrPromise = 11 | | Subscribable 12 | | Subscribable 13 | | PromiseLike 14 | | InteropObservable; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L61-L61) 18 | -------------------------------------------------------------------------------- /docs/rxjs/src/subscribable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Subscribable 4 | module: src 5 | --- 6 | 7 | # Subscribable 8 | 9 | ```ts 10 | interface Subscribable {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L65-L74) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/subscription-like.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: SubscriptionLike 4 | module: src 5 | --- 6 | 7 | # SubscriptionLike 8 | 9 | ```ts 10 | interface SubscriptionLike { 11 | readonly closed: boolean; 12 | 13 | // inherited from Unsubscribable 14 | } 15 | ``` 16 | 17 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L56-L59) 18 | -------------------------------------------------------------------------------- /docs/rxjs/src/teardown-logic.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TeardownLogic 4 | module: src 5 | --- 6 | 7 | # TeardownLogic 8 | 9 | ```ts 10 | export type TeardownLogic = Subscription | Unsubscribable | Function | void; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L54-L54) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/timestamp-provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TimestampProvider 4 | module: src 5 | --- 6 | 7 | # TimestampProvider 8 | 9 | ## description 10 | 11 | This is a type that provides a method to allow RxJS to create a numeric timestamp 12 | 13 | ```ts 14 | interface TimestampProvider {} 15 | ``` 16 | 17 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L164-L172) 18 | -------------------------------------------------------------------------------- /docs/rxjs/src/unary-function.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: UnaryFunction 4 | module: src 5 | --- 6 | 7 | # UnaryFunction 8 | 9 | ```ts 10 | interface UnaryFunction {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L6-L6) 14 | -------------------------------------------------------------------------------- /docs/rxjs/src/unsubscribable.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: Unsubscribable 4 | module: src 5 | --- 6 | 7 | # Unsubscribable 8 | 9 | ```ts 10 | interface Unsubscribable {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ReactiveX/rxjs/blob/master/src/internal/types.ts#L50-L52) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/available-langs.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: AvailableLangs 4 | module: src 5 | --- 6 | 7 | # AvailableLangs 8 | 9 | ```ts 10 | export type AvailableLangs = string[] | { id: string; label: string }[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L24-L24) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/coerce-array.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: coerceArray 4 | module: src 5 | --- 6 | 7 | # coerceArray 8 | 9 | ```ts 10 | function coerceArray(val); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L67-L69) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---- | ----- | ----------- | 19 | | val | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/currency.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Currency 4 | module: src 5 | --- 6 | 7 | # Currency 8 | 9 | ```ts 10 | export type Currency = string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L131-L131) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/date-number-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: DateNumberFormats 4 | module: src 5 | --- 6 | 7 | # DateNumberFormats 8 | 9 | ## description 10 | 11 | Common allowed formats for numbers 12 | 13 | ```ts 14 | export type DateNumberFormats = "numeric" | "2-digit"; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L51-L51) 18 | -------------------------------------------------------------------------------- /docs/transloco/src/default-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: defaultConfig 4 | module: src 5 | --- 6 | 7 | # defaultConfig 8 | 9 | ```ts 10 | const defaultConfig: TranslocoPersistTranslationsConfig; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts#L11-L16) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/failed-event.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: FailedEvent 4 | module: src 5 | --- 6 | 7 | # FailedEvent 8 | 9 | ```ts 10 | export type FailedEvent = { 11 | type: "translationLoadFailure"; 12 | payload: LoadedEvent["payload"]; 13 | }; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L14-L17) 17 | -------------------------------------------------------------------------------- /docs/transloco/src/get-browser-lang.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: getBrowserLang 4 | module: src 5 | --- 6 | 7 | # getBrowserLang 8 | 9 | ## description 10 | 11 | Returns the language code name from the browser, e.g. "en" 12 | 13 | ```ts 14 | function getBrowserLang(): string | undefined; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/browser-lang.ts#L6-L21) 18 | -------------------------------------------------------------------------------- /docs/transloco/src/hash-map.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: HashMap 4 | module: src 5 | --- 6 | 7 | # HashMap 8 | 9 | ```ts 10 | export type HashMap = { [key: string]: T }; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L1-L1) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/inline-loader.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: InlineLoader 4 | module: src 5 | --- 6 | 7 | # InlineLoader 8 | 9 | ```ts 10 | export type InlineLoader = HashMap<() => Promise>; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L33-L33) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/is-browser.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isBrowser 4 | module: src 5 | --- 6 | 7 | # isBrowser 8 | 9 | ```ts 10 | function isBrowser(); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L85-L87) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/is-defined.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isDefined 4 | module: src 5 | --- 6 | 7 | # isDefined 8 | 9 | ```ts 10 | function isDefined(value: any); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L93-L95) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ----- | ----- | ----------- | 19 | | value | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/is-empty.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isEmpty 4 | module: src 5 | --- 6 | 7 | # isEmpty 8 | 9 | ```ts 10 | function isEmpty(collection); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L47-L49) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---------- | ----- | ----------- | 19 | | collection | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/is-nil.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isNil 4 | module: src 5 | --- 6 | 7 | # isNil 8 | 9 | ```ts 10 | function isNil(value: any); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L89-L91) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ----- | ----- | ----------- | 19 | | value | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/is-number.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isNumber 4 | module: src 5 | --- 6 | 7 | # isNumber 8 | 9 | ```ts 10 | function isNumber(val: any): val is number; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L59-L61) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---- | ----- | ----------- | 19 | | val | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/is-object.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isObject 4 | module: src 5 | --- 6 | 7 | # isObject 8 | 9 | ```ts 10 | function isObject(item): boolean; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L63-L65) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---- | ----- | ----------- | 19 | | item | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/is-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: isString 4 | module: src 5 | --- 6 | 7 | # isString 8 | 9 | ```ts 10 | function isString(val: any): val is string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L55-L57) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---- | ----- | ----------- | 19 | | val | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/load-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: LoadOptions 4 | module: src 5 | --- 6 | 7 | # LoadOptions 8 | 9 | ```ts 10 | export type LoadOptions = { 11 | fallbackLangs?: string[] | null; 12 | inlineLoader?: InlineLoader | null; 13 | }; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L34-L34) 17 | -------------------------------------------------------------------------------- /docs/transloco/src/locale-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCALE_CONFIG 4 | module: src 5 | --- 6 | 7 | # LOCALE_CONFIG 8 | 9 | ```ts 10 | const LOCALE_CONFIG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.config.ts#L37-L37) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/locale-currency-mapping.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCALE_CURRENCY_MAPPING 4 | module: src 5 | --- 6 | 7 | # LOCALE_CURRENCY_MAPPING 8 | 9 | ```ts 10 | const LOCALE_CURRENCY_MAPPING: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.config.ts#L38-L38) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/locale-default-locale.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCALE_DEFAULT_LOCALE 4 | module: src 5 | --- 6 | 7 | # LOCALE_DEFAULT_LOCALE 8 | 9 | ```ts 10 | const LOCALE_DEFAULT_LOCALE: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.config.ts#L35-L35) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/locale-lang-mapping.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: LOCALE_LANG_MAPPING 4 | module: src 5 | --- 6 | 7 | # LOCALE_LANG_MAPPING 8 | 9 | ```ts 10 | const LOCALE_LANG_MAPPING: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.config.ts#L36-L36) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/locale.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Locale 4 | module: src 5 | --- 6 | 7 | # Locale 8 | 9 | ```ts 10 | export type Locale = string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L128-L128) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/maybe-array.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: MaybeArray 4 | module: src 5 | --- 6 | 7 | # MaybeArray 8 | 9 | ```ts 10 | export type MaybeArray = T | T[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L31-L31) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/maybe-async-storage.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: MaybeAsyncStorage 4 | module: src 5 | --- 6 | 7 | # MaybeAsyncStorage 8 | 9 | ```ts 10 | interface MaybeAsyncStorage {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco.storage.ts#L5-L11) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/maybe-async.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: MaybeAsync 4 | module: src 5 | --- 6 | 7 | # MaybeAsync 8 | 9 | ```ts 10 | export type MaybeAsync = Promise | Observable | T; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco.storage.ts#L3-L3) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/messageformat-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: MessageformatConfig 4 | module: src 5 | --- 6 | 7 | # MessageformatConfig 8 | 9 | ```ts 10 | interface MessageformatConfig { 11 | locales?: MFLocale; 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-messageformat/src/lib/messageformat.config.ts#L11-L13) 16 | -------------------------------------------------------------------------------- /docs/transloco/src/mflocale.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: MFLocale 4 | module: src 5 | --- 6 | 7 | # MFLocale 8 | 9 | ```ts 10 | export type MFLocale = { [locale: string]: Function } | string[] | string; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-messageformat/src/lib/messageformat.config.ts#L9-L9) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/number-types.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: NumberTypes 4 | module: src 5 | --- 6 | 7 | # NumberTypes 8 | 9 | ## description 10 | 11 | The number display formatting type. 12 | 13 | ```ts 14 | export type NumberTypes = "currency" | "decimal" | "percent"; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L31-L31) 18 | -------------------------------------------------------------------------------- /docs/transloco/src/persist-storage.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: PersistStorage 4 | module: src 5 | --- 6 | 7 | # PersistStorage 8 | 9 | ```ts 10 | export type PersistStorage = Pick< 11 | Storage, 12 | "getItem" | "setItem" | "removeItem" 13 | >; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L21-L21) 17 | -------------------------------------------------------------------------------- /docs/transloco/src/persist-translations-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PERSIST_TRANSLATIONS_CONFIG 4 | module: src 5 | --- 6 | 7 | # PERSIST_TRANSLATIONS_CONFIG 8 | 9 | ```ts 10 | const PERSIST_TRANSLATIONS_CONFIG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/persist-translations-loader.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PERSIST_TRANSLATIONS_LOADER 4 | module: src 5 | --- 6 | 7 | # PERSIST_TRANSLATIONS_LOADER 8 | 9 | ```ts 10 | const PERSIST_TRANSLATIONS_LOADER: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts#L18-L18) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/persist-translations-storage.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: PERSIST_TRANSLATIONS_STORAGE 4 | module: src 5 | --- 6 | 7 | # PERSIST_TRANSLATIONS_STORAGE 8 | 9 | ```ts 10 | const PERSIST_TRANSLATIONS_STORAGE: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts#L19-L19) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/pipes.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: pipes 4 | module: src 5 | --- 6 | 7 | # pipes 8 | 9 | ```ts 10 | const pipes: ( 11 | | typeof TranslocoCurrencyPipe 12 | | typeof TranslocoDatePipe 13 | | typeof TranslocoDecimalPipe 14 | | typeof TranslocoPercentPipe 15 | )[]; 16 | ``` 17 | 18 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.module.ts#L21-L21) 19 | -------------------------------------------------------------------------------- /docs/transloco/src/provider-scope.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ProviderScope 4 | module: src 5 | --- 6 | 7 | # ProviderScope 8 | 9 | ```ts 10 | export type ProviderScope = { 11 | scope: string; 12 | loader?: InlineLoader; 13 | alias?: string; 14 | }; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L26-L30) 18 | -------------------------------------------------------------------------------- /docs/transloco/src/set-translation-options.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: SetTranslationOptions 4 | module: src 5 | --- 6 | 7 | # SetTranslationOptions 8 | 9 | ```ts 10 | export type SetTranslationOptions = { merge?: boolean; emitChange?: boolean }; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L25-L25) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/size.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: FunctionDeclaration 3 | name: size 4 | module: src 5 | --- 6 | 7 | # size 8 | 9 | ```ts 10 | function size(collection); 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/helpers.ts#L31-L45) 14 | 15 | ## Parameters 16 | 17 | | Name | Type | Description | 18 | | ---------- | ----- | ----------- | 19 | | collection | `any` | | 20 | -------------------------------------------------------------------------------- /docs/transloco/src/timezone-name-formats.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TimezoneNameFormats 4 | module: src 5 | --- 6 | 7 | # TimezoneNameFormats 8 | 9 | ## description 10 | 11 | Common allowed formats for time zones 12 | 13 | ```ts 14 | export type TimezoneNameFormats = "short" | "long"; 15 | ``` 16 | 17 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L41-L41) 18 | -------------------------------------------------------------------------------- /docs/transloco/src/translate-object-params.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TranslateObjectParams 4 | module: src 5 | --- 6 | 7 | # TranslateObjectParams 8 | 9 | ```ts 10 | export type TranslateObjectParams = 11 | | TranslateParams 12 | | HashMap 13 | | Map; 14 | ``` 15 | 16 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L23-L23) 17 | -------------------------------------------------------------------------------- /docs/transloco/src/translate-params.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TranslateParams 4 | module: src 5 | --- 6 | 7 | # TranslateParams 8 | 9 | ```ts 10 | export type TranslateParams = string | string[]; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L22-L22) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/translation.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: Translation 4 | module: src 5 | --- 6 | 7 | # Translation 8 | 9 | ```ts 10 | export type Translation = HashMap; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L20-L20) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-date-transformer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoDateTransformer 4 | module: src 5 | --- 6 | 7 | # TranslocoDateTransformer 8 | 9 | ```ts 10 | interface TranslocoDateTransformer {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.transformers.ts#L10-L12) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-events.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TranslocoEvents 4 | module: src 5 | --- 6 | 7 | # TranslocoEvents 8 | 9 | ```ts 10 | export type TranslocoEvents = LoadedEvent | FailedEvent; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L19-L19) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-fallback-strategy.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoFallbackStrategy 4 | module: src 5 | --- 6 | 7 | # TranslocoFallbackStrategy 8 | 9 | ```ts 10 | interface TranslocoFallbackStrategy {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco-fallback-strategy.ts#L6-L8) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-interceptor.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoInterceptor 4 | module: src 5 | --- 6 | 7 | # TranslocoInterceptor 8 | 9 | ```ts 10 | interface TranslocoInterceptor {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco.interceptor.ts#L6-L10) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-lang.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLOCO_LANG 4 | module: src 5 | --- 6 | 7 | # TRANSLOCO_LANG 8 | 9 | ```ts 10 | const TRANSLOCO_LANG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco-lang.ts#L3-L3) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-loader.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoLoader 4 | module: src 5 | --- 6 | 7 | # TranslocoLoader 8 | 9 | ```ts 10 | interface TranslocoLoader {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco.loader.ts#L5-L7) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-loading-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLOCO_LOADING_TEMPLATE 4 | module: src 5 | --- 6 | 7 | # TRANSLOCO_LOADING_TEMPLATE 8 | 9 | ```ts 10 | const TRANSLOCO_LOADING_TEMPLATE: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco-loading-template.ts#L3-L5) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-message-format-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLOCO_MESSAGE_FORMAT_CONFIG 4 | module: src 5 | --- 6 | 7 | # TRANSLOCO_MESSAGE_FORMAT_CONFIG 8 | 9 | ```ts 10 | const TRANSLOCO_MESSAGE_FORMAT_CONFIG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-messageformat/src/lib/messageformat.config.ts#L5-L7) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-missing-handler-data.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoMissingHandlerData 4 | module: src 5 | --- 6 | 7 | # TranslocoMissingHandlerData 8 | 9 | ```ts 10 | interface TranslocoMissingHandlerData { 11 | activeLang: string; 12 | } 13 | ``` 14 | 15 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco-missing-handler.ts#L8-L10) 16 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-missing-handler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoMissingHandler 4 | module: src 5 | --- 6 | 7 | # TranslocoMissingHandler 8 | 9 | ```ts 10 | interface TranslocoMissingHandler {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco-missing-handler.ts#L12-L14) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-module.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ClassDeclaration 3 | name: TranslocoModule 4 | module: src 5 | --- 6 | 7 | # TranslocoModule 8 | 9 | ```ts 10 | class TranslocoModule {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco.module.ts#L32-L38) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-number-transformer.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoNumberTransformer 4 | module: src 5 | --- 6 | 7 | # TranslocoNumberTransformer 8 | 9 | ```ts 10 | interface TranslocoNumberTransformer {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.transformers.ts#L13-L15) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-persist-lang-config.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLOCO_PERSIST_LANG_CONFIG 4 | module: src 5 | --- 6 | 7 | # TRANSLOCO_PERSIST_LANG_CONFIG 8 | 9 | ```ts 10 | const TRANSLOCO_PERSIST_LANG_CONFIG: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-lang/src/lib/persist-lang.config.ts#L10-L10) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-persist-lang-storage.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: VariableDeclaration 3 | name: TRANSLOCO_PERSIST_LANG_STORAGE 4 | module: src 5 | --- 6 | 7 | # TRANSLOCO_PERSIST_LANG_STORAGE 8 | 9 | ```ts 10 | const TRANSLOCO_PERSIST_LANG_STORAGE: any; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-persist-lang/src/lib/persist-lang.config.ts#L9-L9) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-scope.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: TranslocoScope 4 | module: src 5 | --- 6 | 7 | # TranslocoScope 8 | 9 | ```ts 10 | export type TranslocoScope = ProviderScope | string | undefined; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/types.ts#L32-L32) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-transpiler-function.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoTranspilerFunction 4 | module: src 5 | --- 6 | 7 | # TranslocoTranspilerFunction 8 | 9 | ```ts 10 | interface TranslocoTranspilerFunction {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco.transpiler.ts#L89-L91) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/transloco-transpiler.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: InterfaceDeclaration 3 | name: TranslocoTranspiler 4 | module: src 5 | --- 6 | 7 | # TranslocoTranspiler 8 | 9 | ```ts 10 | interface TranslocoTranspiler {} 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/transloco.transpiler.ts#L8-L12) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/valid-date.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: ValidDate 4 | module: src 5 | --- 6 | 7 | # ValidDate 8 | 9 | ```ts 10 | export type ValidDate = Date | string | number; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.types.ts#L133-L133) 14 | -------------------------------------------------------------------------------- /docs/transloco/src/view.md: -------------------------------------------------------------------------------- 1 | --- 2 | kind: TypeAliasDeclaration 3 | name: View 4 | module: src 5 | --- 6 | 7 | # View 8 | 9 | ```ts 10 | export type View = string | TemplateRef | Type; 11 | ``` 12 | 13 | [Link to repo](https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco/src/lib/template-handler.ts#L5-L5) 14 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingComma: "all", 3 | useTabs: true, 4 | singleQuote: true, 5 | }; 6 | --------------------------------------------------------------------------------