formatObjKey.d.ts 220 B

123456
  1. interface Config {
  2. exclude?: string[];
  3. }
  4. declare type FormatObjKeyType = 'firstUpperCase' | 'firstLowerCase';
  5. export declare function formatObjKey(obj: any, type: FormatObjKeyType, options?: Config): any;
  6. export {};