1.0.4 • Published 6 months ago

@types/recase v1.0.4

Weekly downloads
36
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for Recase 1.0
// Project: https://github.com/coolaj86/recase-js
// Definitions by: Mikal Madsen <https://github.com/18steps>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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: Thu, 08 Jul 2021 22:41:47 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Mikal Madsen.