2019-01-24 23:51:05 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2025-04-04 21:38:51 +08:00
|
|
|
/** @typedef {undefined | null | number | string | boolean | Buffer | EXPECTED_OBJECT | (() => ComplexSerializableType[] | Promise<ComplexSerializableType[]>)} ComplexSerializableType */
|
2019-01-24 23:51:05 +08:00
|
|
|
|
2024-10-24 11:02:20 +08:00
|
|
|
/** @typedef {undefined | null | number | bigint | string | boolean | Buffer | (() => PrimitiveSerializableType[] | Promise<PrimitiveSerializableType[]>)} PrimitiveSerializableType */
|
2019-01-24 23:51:05 +08:00
|
|
|
|
2024-10-24 11:02:20 +08:00
|
|
|
/** @typedef {Buffer | (() => BufferSerializableType[] | Promise<BufferSerializableType[]>)} BufferSerializableType */
|
2019-01-24 23:51:05 +08:00
|
|
|
|
|
|
|
module.exports = {};
|