mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-24 10:37:16 +00:00
Make methods lower case
This commit is contained in:
parent
346ad4fdbd
commit
dec28c7a1a
2 changed files with 732 additions and 798 deletions
1528
modern/__generated__/makiInterfaces.ts
generated
1528
modern/__generated__/makiInterfaces.ts
generated
File diff suppressed because it is too large
Load diff
|
|
@ -41,7 +41,7 @@ function argumentTypeForParameter(param) {
|
|||
|
||||
function methodTypeForFunction(func) {
|
||||
const args = func.parameters.map(argumentTypeForParameter).join(", ");
|
||||
return `${func.name}(${args}): ${mapType(func.result)};`;
|
||||
return `${func.name.toLowerCase()}(${args}): ${mapType(func.result)};`;
|
||||
}
|
||||
|
||||
function interfaceForObject(object) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue