first commit

This commit is contained in:
编码猿
2024-09-27 01:15:47 +08:00
commit 8be1fcce6b
155 changed files with 9435 additions and 0 deletions

6
json-mapper-class/dist/utils.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import { StoreItemOptions, StoreItemType, BasicClass } from './typing';
export declare const isNull: (val: any) => boolean;
export declare const isUndefined: (val: any) => boolean;
export declare const isNullOrUndefined: (val: any) => boolean;
export declare const getOriginalKeyStore: <T>(Clazz: BasicClass<T>) => Map<string, StoreItemOptions[]>;
export declare const getKeyStore: <T>(Clazz: BasicClass<T>) => Map<string, StoreItemType>;