mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
9 lines
319 B
TypeScript
9 lines
319 B
TypeScript
// Type definitions for upper-case
|
|
// Project: https://github.com/blakeembrey/upper-case
|
|
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
declare function upperCase(string: any, locale?: string): string;
|
|
export = upperCase;
|