hexo/node_modules/ali-oss/lib/common/utils/dataFix.d.ts

13 lines
306 B
TypeScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
interface Rename {
[propName: string]: string;
}
interface Config {
lowerFirst?: boolean;
rename?: Rename;
remove?: string[];
camel?: string[];
bool?: string[];
}
export declare function dataFix(o: object, conf: Config, finalKill?: Function): typeof dataFix | undefined;
export {};