Files
DefinitelyTyped/swap-case/swap-case.d.ts
2015-08-08 17:32:33 +01:00

10 lines
345 B
TypeScript

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