Installation
npm install --save @types/recase
Summary
This package contains type definitions for recase (https://github.com/coolaj86/recase-js).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recase.
index.d.ts
export interface Recase {
camelCopy(orig: any): any;
snakeCopy(orig: any): any;
}
export function create(opts: {
exceptions?: {
[origKey: string]: string;
} | undefined;
}): Recase;
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: none
Credits
These definitions were written by Mikal Madsen.