mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
10 lines
346 B
TypeScript
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;
|
|
}
|