/** ## `char` : 表示定长字符串 @category Gymnastics */ export type char = string; /** ## `JsonX` : 可进行JSON序列化的数据类型 @category Gymnastics */ export type JsonX = string | number | boolean | null | undefined | JsonX[] | JsonXObject; /** ## `JsonXObject` : JSON对象 @category Gymnastics */ export type JsonXObject = { [key: string | number]: JsonX; }; //# sourceMappingURL=str.d.ts.map