-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
119 lines (112 loc) · 4.19 KB
/
mkdocs.yml
File metadata and controls
119 lines (112 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Project information
site_name: RxJS Angular interview guide
site_description: A comprehensive, open-source RxJS interview guide tailored for Angular developers. Includes real-world questions, detailed answers, and code examples to help you ace your next interview.
site_author: Ankit Sharma
# Repository
repo_name: "RxJS Angular interview guide"
repo_url: "https://github.com/AnkitSharma-007/rxjs-angular-interview-guide"
# Navigation
nav:
- "Home":
- index.md
- "Overview":
- "Observable": observable.md
- "Observer": observer.md
- "Cold Observables": cold-observables.md
- "Hot Observables": hot-observables.md
- "Promise Vs Observable": promise-vs-observable.md
- "Async pipe": async-pipe.md
- "Operators":
- "RxJS operators": Operators/RxJS-operators.md
- "Combination":
- "combineLatest": Operators/Combination/combineLatest.md
- "forkJoin": Operators/Combination/forkJoin.md
- "zip": Operators/Combination/zip.md
- "withLatestFrom": Operators/Combination/withLatestFrom.md
- "Creation":
- "empty VS never": Operators/Creation/empty-never.md
- "from": Operators/Creation/from.md
- "interval": Operators/Creation/interval.md
- "of": Operators/Creation/of.md
- "timer": Operators/Creation/timer.md
- "Error Handeling":
- "catchError": Operators/Error/catchError.md
- "retry": Operators/Error/retry.md
- "retryWhen": Operators/Error/retryWhen.md
- "Filtering":
- "debounceTime": Operators/Filtering/debounceTime.md
- "distinctUntilChanged": Operators/Filtering/distinctUntilChanged.md
- "filter": Operators/Filtering/filter.md
- "find": Operators/Filtering/find.md
- "first": Operators/Filtering/first.md
- "last": Operators/Filtering/last.md
- "skip": Operators/Filtering/skip.md
- "take": Operators/Filtering/take.md
- "takeUntil": Operators/Filtering/takeUntil.md
- "Multicasting":
- "share": Operators/Multicasting/share.md
- "shareReplay": Operators/Multicasting/shareReplay.md
- "Subjects":
- "subject": Operators/Subjects/subject.md
- "behaviorSubject": Operators/Subjects/behaviorSubject.md
- "replaySubject": Operators/Subjects/replaySubject.md
- "Subject Vs BehaviorSubject Vs ReplaySubject": Operators/Subjects/subject-behaviorSubject-replaySubject.md
- "Transformation":
- "concatMap": Operators/Transformation/concatMap.md
- "exhaustMap": Operators/Transformation/exhaustMap.md
- "map": Operators/Transformation/map.md
- "mergeMap": Operators/Transformation/mergeMap.md
- "switchMap": Operators/Transformation/switchMap.md
- "switchMap Vs mergeMap Vs concatMap": Operators/Transformation/switchMap-mergeMap-concatMap.md
- "Utility":
- "delay": Operators/Utility/delay.md
- "finalize": Operators/Utility/finalize.md
- "tap": Operators/Utility/tap.md
- "timeout": Operators/Utility/timeout.md
# Configuration
theme:
name: material
language: "en"
font:
text: Roboto
code: Roboto Mono
logo: assets/Rx_Logo.png
favicon: assets/favicon.ico
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to system preference
features:
- navigation.instant
- navigation.instant.progress
- navigation.footer
- navigation.indexes
- navigation.tracking
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/ankitsharma-007
- icon: fontawesome/brands/square-x-twitter
link: https://twitter.com/ankitsharma_007
extra_css:
- stylesheets/extra.css
# Extensions
markdown_extensions:
- attr_list
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: "#"
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details