mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-02-15 06:25:06 +09:00
9 lines
278 B
TypeScript
9 lines
278 B
TypeScript
![]() |
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
export type JsonValue = JsonArray | JsonObject | string | number | boolean | null;
|
||
|
export type JsonObject = {[K in string]?: JsonValue};
|
||
|
export type JsonArray = JsonValue[];
|