Files
DefinitelyTyped/snake-case/snake-case.d.ts

10 lines
345 B
TypeScript

// Type definitions for snake-case
// Project: https://github.com/blakeembrey/snake-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "snake-case" {
function snakeCase(string: string, locale?: string): string;
export = snakeCase;
}