7 lines
220 B
TypeScript
7 lines
220 B
TypeScript
|
|
interface Config {
|
||
|
|
exclude?: string[];
|
||
|
|
}
|
||
|
|
declare type FormatObjKeyType = 'firstUpperCase' | 'firstLowerCase';
|
||
|
|
export declare function formatObjKey(obj: any, type: FormatObjKeyType, options?: Config): any;
|
||
|
|
export {};
|