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