mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
declare module 'camelcase' {
|
|
export default function camelcase(
|
|
input: string,
|
|
options?: {
|
|
pascalCase?: boolean;
|
|
}
|
|
): string;
|
|
}
|