formatObjKey.d.ts 220 Bytes
Newer Older
huahua committed
1 2 3 4 5 6
interface Config {
    exclude?: string[];
}
declare type FormatObjKeyType = 'firstUpperCase' | 'firstLowerCase';
export declare function formatObjKey(obj: any, type: FormatObjKeyType, options?: Config): any;
export {};