dataFix.d.ts 306 B

123456789101112
  1. interface Rename {
  2. [propName: string]: string;
  3. }
  4. interface Config {
  5. lowerFirst?: boolean;
  6. rename?: Rename;
  7. remove?: string[];
  8. camel?: string[];
  9. bool?: string[];
  10. }
  11. export declare function dataFix(o: object, conf: Config, finalKill?: Function): typeof dataFix | undefined;
  12. export {};