README.md
1# Public Repository for API Declaration Files
2
3## Overview
4
5This repository is used to store .d.ts declaration files of JavaScript/TypeScript APIs and API-related tools.
6
7## Directory Structure
8
9```
10├─api
11| ├─@internal
12│ | ├─component
13│ | | └─ets # Declaration file for components in the TypeScript-based declarative development paradigm
14| | └─ets
15| ├─config # JavaScript-based web-like development paradigm
16| ├─form # JavaScript service widget
17| ├─@ohos.×××.d.ts # API declaration file
18| └─@system.×××.d.ts # Deprecated APIs
19├─build-tools
20 ├─api_check_plugin # Tool for checking API specifications
21 | ├─plugin
22 | ├─src
23 | └─test
24 └─collect_application_api # Tool for parsing used APIs
25 └─src
26```
27
28## Repositories Involved
29
30[interface-sdk_js](https://gitee.com/openharmony/interface_sdk-js/tree/master)
31