Skip to content

Commit 9f28497

Browse files
suramamsuramam
authored andcommitted
Bug fixes
1 parent e0aa110 commit 9f28497

File tree

124 files changed

+1537
-2057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+1537
-2057
lines changed

reference/spfx/es6-collections/es6-collections-imodule.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313

1414

15+
16+
1517
## Variables
1618

1719
| Variable | Description|

reference/spfx/es6-collections/foreachable.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111

1212

13+
14+
1315
## Methods
1416

1517
| Method | Returns | Description|
@@ -23,11 +25,10 @@
2325

2426

2527

26-
#### Signature
27-
`forEach(callbackfn: (value: T) => void): void`
28+
**Signature:** ``forEach(callbackfn: (value: T) => void): void``
29+
30+
**Returns**: `void`
2831

29-
#### Returns
30-
`void`
3132

3233

3334
#### Parameters

reference/spfx/es6-collections/iterator.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111

1212

13+
14+
1315
## Methods
1416

1517
| Method | Returns | Description|
@@ -25,11 +27,10 @@
2527

2628

2729

28-
#### Signature
29-
`next(value?: any): IteratorResult<T>`
30+
**Signature:** ``next(value?: any): IteratorResult<T>``
31+
32+
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
3033

31-
#### Returns
32-
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
3334

3435

3536
#### Parameters
@@ -44,11 +45,10 @@
4445

4546

4647

47-
#### Signature
48-
`return?(value?: any): IteratorResult<T>`
48+
**Signature:** ``return?(value?: any): IteratorResult<T>``
49+
50+
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
4951

50-
#### Returns
51-
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
5252

5353

5454
#### Parameters
@@ -63,11 +63,10 @@
6363

6464

6565

66-
#### Signature
67-
`throw?(e?: any): IteratorResult<T>`
66+
**Signature:** ``throw?(e?: any): IteratorResult<T>``
67+
68+
**Returns**: [`IteratorResult<T>`](../es6-collections/iteratorresult.md)
6869

69-
#### Returns
70-
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
7170

7271

7372
#### Parameters

reference/spfx/es6-collections/iteratorresult.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88

99

10+
11+
1012
## Properties
1113

1214
| Property | Type | Description|

reference/spfx/es6-collections/map.md

Lines changed: 29 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88

99

10+
11+
1012
## Properties
1113

1214
| Property | Type | Description|
@@ -37,11 +39,10 @@
3739

3840

3941

40-
#### Signature
41-
`clear(): void`
42+
**Signature:** ``clear(): void``
43+
44+
**Returns**: `void`
4245

43-
#### Returns
44-
`void`
4546

4647

4748
#### Parameters
@@ -52,11 +53,10 @@ None
5253

5354

5455

55-
#### Signature
56-
`delete(key: K): boolean`
56+
**Signature:** ``delete(key: K): boolean``
57+
58+
**Returns**: `boolean`
5759

58-
#### Returns
59-
`boolean`
6060

6161

6262
#### Parameters
@@ -71,11 +71,10 @@ None
7171

7272

7373

74-
#### Signature
75-
`forEach(callbackfn: (value: V,index: K,map: Map<K,V>) => void,thisArg?: any): void`
74+
**Signature:** ``forEach(callbackfn: (value: V,index: K,map: Map<K,V>) => void,thisArg?: any): void``
75+
76+
**Returns**: `void`
7677

77-
#### Returns
78-
`void`
7978

8079

8180
#### Parameters
@@ -91,11 +90,10 @@ None
9190

9291

9392

94-
#### Signature
95-
`get(key: K): V`
93+
**Signature:** ``get(key: K): V``
94+
95+
**Returns**: `V`
9696

97-
#### Returns
98-
`V`
9997

10098

10199
#### Parameters
@@ -110,11 +108,10 @@ None
110108

111109

112110

113-
#### Signature
114-
`has(key: K): boolean`
111+
**Signature:** ``has(key: K): boolean``
112+
113+
**Returns**: `boolean`
115114

116-
#### Returns
117-
`boolean`
118115

119116

120117
#### Parameters
@@ -129,11 +126,10 @@ None
129126

130127

131128

132-
#### Signature
133-
`set(key: K,value?: V): Map<K,V>`
129+
**Signature:** ``set(key: K,value?: V): Map<K,V>``
130+
131+
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
134132

135-
#### Returns
136-
[`Map<K,V>`](../es6-collections/map.md)
137133

138134

139135
#### Parameters
@@ -149,11 +145,10 @@ None
149145

150146

151147

152-
#### Signature
153-
`entries(): Iterator<[K,V]>`
148+
**Signature:** ``entries(): Iterator<[K,V]>``
149+
150+
**Returns**: [`Iterator<[K,V]>`](../es6-collections/iterator.md)
154151

155-
#### Returns
156-
[`Iterator<[K,V]>`](../es6-collections/iterator.md)
157152

158153

159154
#### Parameters
@@ -164,11 +159,10 @@ None
164159

165160

166161

167-
#### Signature
168-
`keys(): Iterator<K>`
162+
**Signature:** ``keys(): Iterator<K>``
163+
164+
**Returns**: [`Iterator<K>`](../es6-collections/iterator.md)
169165

170-
#### Returns
171-
[`Iterator<K>`](../es6-collections/iterator.md)
172166

173167

174168
#### Parameters
@@ -179,11 +173,10 @@ None
179173

180174

181175

182-
#### Signature
183-
`values(): Iterator<V>`
176+
**Signature:** ``values(): Iterator<V>``
177+
178+
**Returns**: [`Iterator<V>`](../es6-collections/iterator.md)
184179

185-
#### Returns
186-
[`Iterator<V>`](../es6-collections/iterator.md)
187180

188181

189182
#### Parameters

reference/spfx/es6-collections/mapconstructor.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88

99

10+
11+
1012
## Properties
1113

1214
| Property | Type | Description|
@@ -30,11 +32,10 @@
3032

3133

3234

33-
#### Signature
34-
`new<K,V>(): Map<K,V>`
35+
**Signature:** ``new<K,V>(): Map<K,V>``
36+
37+
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
3538

36-
#### Returns
37-
[`Map<K,V>`](../es6-collections/map.md)
3839

3940

4041
#### Parameters
@@ -45,11 +46,10 @@ None
4546

4647

4748

48-
#### Signature
49-
`new<K,V>(iterable: ForEachable<[K,V]>): Map<K,V>`
49+
**Signature:** ``new<K,V>(iterable: ForEachable<[K,V]>): Map<K,V>``
50+
51+
**Returns**: [`Map<K,V>`](../es6-collections/map.md)
5052

51-
#### Returns
52-
[`Map<K,V>`](../es6-collections/map.md)
5353

5454

5555
#### Parameters

0 commit comments

Comments
 (0)