Skip to content

Commit 4a7fa86

Browse files
suramamsuramam
authored andcommitted
Folders
1 parent 04c4f79 commit 4a7fa86

File tree

140 files changed

+989
-1074
lines changed

Some content is hidden

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

140 files changed

+989
-1074
lines changed

reference/sharepoint-framework-reference.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
| Module | Description|
66
|:-------------|:-------|
7-
|[sp-client-base](./spfx/sp-client-base-module.md)||
8-
|[sp-client-preview](./spfx/sp-client-preview-module.md)||
9-
|[sp-module-interfaces](./spfx/sp-module-interfaces-module.md)||
10-
|[typings/es6-collections](./spfx/es6-collections-module.md)||
11-
|[typings/es6-promise](./spfx/es6-promise-module.md)||
12-
|[typings/whatwg-fetch](./spfx/whatwg-fetch-module.md)||
7+
|[sp-client-base](./spfx/sp-client-base-/sp-client-base-module.md)||
8+
|[sp-client-preview](./spfx/sp-client-preview/sp-client-preview-module.md)||
9+
|[sp-module-interfaces](./spfx/sp-module-interfaces/sp-module-interfaces-module.md)||
10+
|[typings/es6-collections](./spfx/es6-collections/es6-collections-module.md)||
11+
|[typings/es6-promise](./spfx/es6-promise/es6-promise-module.md)||
12+
|[typings/whatwg-fetch](./spfx/whatwg-fetch/whatwg-fetch-module.md)||

reference/spfx/es6-collections-module.md renamed to reference/spfx/es6-collections/es6-collections-module.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535

3636
| Variable | Type|
3737
|:-----------|:------------|
38-
|Map | [`MapConstructor`](mapconstructor.md) |
39-
|Set | [`SetConstructor`](setconstructor.md) |
40-
|WeakMap | [`WeakMapConstructor`](weakmapconstructor.md) |
41-
|WeakSet | [`WeakSetConstructor`](weaksetconstructor.md) |
38+
|Map | [`MapConstructor`](../es6-collections/mapconstructor.md) |
39+
|Set | [`SetConstructor`](../es6-collections/setconstructor.md) |
40+
|WeakMap | [`WeakMapConstructor`](../es6-collections/weakmapconstructor.md) |
41+
|WeakSet | [`WeakSetConstructor`](../es6-collections/weaksetconstructor.md) |
4242

reference/spfx/iterator.md renamed to reference/spfx/es6-collections/iterator.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
| Method | Returns | Description|
1818
|:-------------|:-------|:-----------|
19-
|[`next`](#next) | [`IteratorResult<T>`](iteratorresult.md) | |
20-
|[`return`](#return) | [`IteratorResult<T>`](iteratorresult.md) | |
21-
|[`throw`](#throw) | [`IteratorResult<T>`](iteratorresult.md) | |
19+
|[`next`](#next) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
20+
|[`return`](#return) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
21+
|[`throw`](#throw) | [`IteratorResult<T>`](../es6-collections/iteratorresult.md) | |
2222

2323

2424

@@ -31,7 +31,7 @@
3131
`next(value?: any): IteratorResult<T>`
3232

3333
#### Returns
34-
[`IteratorResult<T>`](iteratorresult.md)
34+
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
3535

3636

3737
#### Parameters
@@ -50,7 +50,7 @@
5050
`return?(value?: any): IteratorResult<T>`
5151

5252
#### Returns
53-
[`IteratorResult<T>`](iteratorresult.md)
53+
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
5454

5555

5656
#### Parameters
@@ -69,7 +69,7 @@
6969
`throw?(e?: any): IteratorResult<T>`
7070

7171
#### Returns
72-
[`IteratorResult<T>`](iteratorresult.md)
72+
[`IteratorResult<T>`](../es6-collections/iteratorresult.md)
7373

7474

7575
#### Parameters

reference/spfx/map.md renamed to reference/spfx/es6-collections/map.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
|[`forEach`](#foreach) | `void` | |
2828
|[`get`](#get) | `V` | |
2929
|[`has`](#has) | `boolean` | |
30-
|[`set`](#set) | [`Map<K,V>`](map.md) | |
31-
|[`entries`](#entries) | [`Iterator<[K,V]>`](iterator.md) | |
32-
|[`keys`](#keys) | [`Iterator<K>`](iterator.md) | |
33-
|[`values`](#values) | [`Iterator<V>`](iterator.md) | |
30+
|[`set`](#set) | [`Map<K,V>`](../es6-collections/map.md) | |
31+
|[`entries`](#entries) | [`Iterator<[K,V]>`](../es6-collections/iterator.md) | |
32+
|[`keys`](#keys) | [`Iterator<K>`](../es6-collections/iterator.md) | |
33+
|[`values`](#values) | [`Iterator<V>`](../es6-collections/iterator.md) | |
3434

3535

3636

@@ -135,7 +135,7 @@ None
135135
`set(key: K,value?: V): Map<K,V>`
136136

137137
#### Returns
138-
[`Map<K,V>`](map.md)
138+
[`Map<K,V>`](../es6-collections/map.md)
139139

140140

141141
#### Parameters
@@ -155,7 +155,7 @@ None
155155
`entries(): Iterator<[K,V]>`
156156

157157
#### Returns
158-
[`Iterator<[K,V]>`](iterator.md)
158+
[`Iterator<[K,V]>`](../es6-collections/iterator.md)
159159

160160

161161
#### Parameters
@@ -170,7 +170,7 @@ None
170170
`keys(): Iterator<K>`
171171

172172
#### Returns
173-
[`Iterator<K>`](iterator.md)
173+
[`Iterator<K>`](../es6-collections/iterator.md)
174174

175175

176176
#### Parameters
@@ -185,7 +185,7 @@ None
185185
`values(): Iterator<V>`
186186

187187
#### Returns
188-
[`Iterator<V>`](iterator.md)
188+
[`Iterator<V>`](../es6-collections/iterator.md)
189189

190190

191191
#### Parameters

reference/spfx/mapconstructor.md renamed to reference/spfx/es6-collections/mapconstructor.md

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

1414
| Property | Type | Description|
1515
|:-------------|:-------|:-----------|
16-
|`prototype` | [`Map<any,any>`](map.md) | |
16+
|`prototype` | [`Map<any,any>`](../es6-collections/map.md) | |
1717

1818

1919

@@ -22,8 +22,8 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](map.md) | |
26-
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](map.md) | |
25+
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](../es6-collections/map.md) | |
26+
|[`constructor<K,V>`](#constructor<k,v>) | [`Map<K,V>`](../es6-collections/map.md) | |
2727

2828

2929

@@ -36,7 +36,7 @@
3636
`new<K,V>(): Map<K,V>`
3737

3838
#### Returns
39-
[`Map<K,V>`](map.md)
39+
[`Map<K,V>`](../es6-collections/map.md)
4040

4141

4242
#### Parameters
@@ -51,13 +51,13 @@ None
5151
`new<K,V>(iterable: ForEachable<[K,V]>): Map<K,V>`
5252

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

5656

5757
#### Parameters
5858

5959

6060
| Parameter | Type | Description |
6161
|:-------------|:---------------|:------------|
62-
| `iterable` | [`ForEachable<[K,V]>`](foreachable.md) | |
62+
| `iterable` | [`ForEachable<[K,V]>`](../es6-collections/foreachable.md) | |
6363

reference/spfx/set.md renamed to reference/spfx/es6-collections/set.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`add`](#add) | [`Set<T>`](set.md) | |
25+
|[`add`](#add) | [`Set<T>`](../es6-collections/set.md) | |
2626
|[`clear`](#clear) | `void` | |
2727
|[`delete`](#delete) | `boolean` | |
2828
|[`forEach`](#foreach) | `void` | |
2929
|[`has`](#has) | `boolean` | |
30-
|[`entries`](#entries) | [`Iterator<[T,T]>`](iterator.md) | |
31-
|[`keys`](#keys) | [`Iterator<T>`](iterator.md) | |
32-
|[`values`](#values) | [`Iterator<T>`](iterator.md) | |
30+
|[`entries`](#entries) | [`Iterator<[T,T]>`](../es6-collections/iterator.md) | |
31+
|[`keys`](#keys) | [`Iterator<T>`](../es6-collections/iterator.md) | |
32+
|[`values`](#values) | [`Iterator<T>`](../es6-collections/iterator.md) | |
3333

3434

3535

@@ -42,7 +42,7 @@
4242
`add(value: T): Set<T>`
4343

4444
#### Returns
45-
[`Set<T>`](set.md)
45+
[`Set<T>`](../es6-collections/set.md)
4646

4747

4848
#### Parameters
@@ -134,7 +134,7 @@ None
134134
`entries(): Iterator<[T,T]>`
135135

136136
#### Returns
137-
[`Iterator<[T,T]>`](iterator.md)
137+
[`Iterator<[T,T]>`](../es6-collections/iterator.md)
138138

139139

140140
#### Parameters
@@ -149,7 +149,7 @@ None
149149
`keys(): Iterator<T>`
150150

151151
#### Returns
152-
[`Iterator<T>`](iterator.md)
152+
[`Iterator<T>`](../es6-collections/iterator.md)
153153

154154

155155
#### Parameters
@@ -164,7 +164,7 @@ None
164164
`values(): Iterator<T>`
165165

166166
#### Returns
167-
[`Iterator<T>`](iterator.md)
167+
[`Iterator<T>`](../es6-collections/iterator.md)
168168

169169

170170
#### Parameters

reference/spfx/setconstructor.md renamed to reference/spfx/es6-collections/setconstructor.md

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

1414
| Property | Type | Description|
1515
|:-------------|:-------|:-----------|
16-
|`prototype` | [`Set<any>`](set.md) | |
16+
|`prototype` | [`Set<any>`](../es6-collections/set.md) | |
1717

1818

1919

@@ -22,8 +22,8 @@
2222

2323
| Method | Returns | Description|
2424
|:-------------|:-------|:-----------|
25-
|[`constructor<T>`](#constructor<t>) | [`Set<T>`](set.md) | |
26-
|[`constructor<T>`](#constructor<t>) | [`Set<T>`](set.md) | |
25+
|[`constructor<T>`](#constructor<t>) | [`Set<T>`](../es6-collections/set.md) | |
26+
|[`constructor<T>`](#constructor<t>) | [`Set<T>`](../es6-collections/set.md) | |
2727

2828

2929

@@ -36,7 +36,7 @@
3636
`new<T>(): Set<T>`
3737

3838
#### Returns
39-
[`Set<T>`](set.md)
39+
[`Set<T>`](../es6-collections/set.md)
4040

4141

4242
#### Parameters
@@ -51,13 +51,13 @@ None
5151
`new<T>(iterable: ForEachable<T>): Set<T>`
5252

5353
#### Returns
54-
[`Set<T>`](set.md)
54+
[`Set<T>`](../es6-collections/set.md)
5555

5656

5757
#### Parameters
5858

5959

6060
| Parameter | Type | Description |
6161
|:-------------|:---------------|:------------|
62-
| `iterable` | [`ForEachable<T>`](foreachable.md) | |
62+
| `iterable` | [`ForEachable<T>`](../es6-collections/foreachable.md) | |
6363

0 commit comments

Comments
 (0)