DefinitelyTyped/pascal-case/pascal-case.d.ts
2015-08-03 16:38:57 +01:00

10 lines
346 B
TypeScript

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