mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
declare module 'xml2js/lib/processors' {
|
|
export function firstCharLowerCase(name: string): string;
|
|
|
|
export function normalize(name: string): string;
|
|
|
|
export function parseBooleans(name: string): boolean;
|
|
|
|
export function parseNumbers(name: string): number;
|
|
|
|
export function stripPrefix(name: string): string;
|
|
}
|