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