租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
306 B

3 months ago
  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 {};