mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-31 14:07:40 +00:00
9 lines
324 B
TypeScript
9 lines
324 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
declare function pascalCase(string: string, locale?: string): string;
|
|
export = pascalCase;
|