-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lexus Drumgold <[email protected]>
- Loading branch information
1 parent
2dd3c8f
commit bd3193f
Showing
7 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
/** | ||
* @file Type Definitions - JSONArray | ||
* @module tutils/types/JSONArray | ||
* @file Type Definitions - JsonArray | ||
* @module tutils/types/JsonArray | ||
*/ | ||
|
||
import type JSONValue from './json-value' | ||
import type JsonValue from './json-value' | ||
|
||
/** | ||
* Type representing an array containing [JSON values][1]. | ||
* | ||
* [1]: https://restfulapi.net/json-data-types | ||
*/ | ||
type JSONArray = JSONValue[] | ||
type JsonArray = JsonValue[] | ||
|
||
export { type JSONArray as default } | ||
export type { JsonArray as default } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
/** | ||
* @file Type Definitions - JSONValue | ||
* @module tutils/types/JSONValue | ||
* @file Type Definitions - JsonValue | ||
* @module tutils/types/JsonValue | ||
*/ | ||
|
||
import type JSONArray from './json-array' | ||
import type JSONObject from './json-object' | ||
import type JSONPrimitive from './json-primitive' | ||
import type JsonArray from './json-array' | ||
import type JsonObject from './json-object' | ||
import type JsonPrimitive from './json-primitive' | ||
|
||
/** | ||
* [JSON data types][1]. | ||
* | ||
* [1]: https://restfulapi.net/json-data-types | ||
*/ | ||
type JSONValue = JSONArray | JSONObject | JSONPrimitive | ||
type JsonValue = JsonArray | JsonObject | JsonPrimitive | ||
|
||
export type { JSONValue as default } | ||
export type { JsonValue as default } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters