Skip to content

Commit 73ce845

Browse files
committed
Removed API reference sections from http.md and connectivity.md
1 parent c7e2507 commit 73ce845

File tree

3 files changed

+12
-31
lines changed

3 files changed

+12
-31
lines changed

.vitepress/config.js

+12-18
Original file line numberDiff line numberDiff line change
@@ -536,25 +536,19 @@ function getSidebar() {
536536
children: [
537537
{ text: 'Color', link: '/nativescript-core/color' },
538538
{ text: 'Connectivity', link: '/nativescript-core/connectivity' },
539-
{ text: 'Application', link: '/nativescript-core/application' },
540-
{
541-
text: 'ApplicationSettings',
542-
link: '/nativescript-core/application-settings',
543-
},
544-
{ text: 'Observable', link: '/nativescript-core/observable' },
545-
{
546-
text: 'Observable Array',
547-
link: '/nativescript-core/observable-array',
548-
},
549-
{ text: 'Virtual Array', link: '/nativescript-core/virtual-array' },
550-
{ text: 'File System', link: '/nativescript-core/file-system' },
551-
{ text: 'Fps Meter', link: '/nativescript-core/fps-meter' },
539+
//{ text: 'Application', link: '/nativescript-core/application' },
540+
//{text: 'ApplicationSettings',link: '/nativescript-core/application-settings'},
541+
//{ text: 'Observable', link: '/nativescript-core/observable' },
542+
//{text: 'Observable Array',link: '/nativescript-core/observable-array'},
543+
//{ text: 'Virtual Array', link: '/nativescript-core/virtual-array' },
544+
//{ text: 'File System', link: '/nativescript-core/file-system' },
545+
//{ text: 'Fps Meter', link: '/nativescript-core/fps-meter' },
552546
{ text: 'Http', link: '/nativescript-core/http' },
553-
{ text: 'Image Source', link: '/nativescript-core/image-source' },
554-
{ text: 'Platform', link: '/nativescript-core/platform' },
555-
{ text: 'Timer', link: '/nativescript-core/timer' },
556-
{ text: 'Trace', link: '/nativescript-core/trace' },
557-
{ text: 'Xml Parser', link: '/nativescript-core/xml-parser' },
547+
//{ text: 'Image Source', link: '/nativescript-core/image-source' },
548+
//{ text: 'Platform', link: '/nativescript-core/platform' },
549+
//{ text: 'Timer', link: '/nativescript-core/timer' },
550+
//{ text: 'Trace', link: '/nativescript-core/trace' },
551+
//{ text: 'Xml Parser', link: '/nativescript-core/xml-parser' },
558552
],
559553
},
560554
// {

nativescript-core/connectivity.md

-7
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,6 @@ export function onNavigatedTo(args) {
8888
- `bluetooth = 4`,
8989
- `vpn = 5`
9090

91-
#### API References
92-
93-
| Name | Type |
94-
| --------------------------------------------------------------------------- | -------- |
95-
| [@nativescript/core/connectivity](/api-reference/modules.html#connectivity) | `Module` |
96-
| [connectionType](/api-reference/modules.html#connectivity) | `Enum` |
97-
9891
#### Native Component
9992

10093
| Android | iOS |

nativescript-core/http.md

-6
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,3 @@ Http.request({
172172
| `getJSON<T>(url: string): Promise<T>` | `Promise<T>` | Downloads the content from the specified URL as a string and returns its JSON.parse representation. |
173173
| `getString(url: string): Promise<string>` | `Promise<string>` | Downloads the content from the specified URL as a string. |
174174
| `request(options: HttpRequestOptions): Promise<HttpResponse>` | `Promise<HttpResponse>` | Makes a generic http request using the provided options and returns a HttpResponse Object. |
175-
176-
#### API References
177-
178-
| Name | Type |
179-
| ---------------------------------------------------------------------------------------- | -------- |
180-
| [@nativescript/core/http](https://docs.nativescript.org/api-reference/modules.html#http) | `Module` |

0 commit comments

Comments
 (0)