feat(index.d.ts): update create method parameter type for XML string creation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-27 14:36:04 +00:00
parent fe548c0537
commit c4d4a2f6e0

4
index.d.ts vendored
View File

@@ -506,10 +506,10 @@ declare global {
/**
* create xml string
*
* @param data object or array
* @param data object or array (map with string keys as nodes (-KEY will be attribute in parent node))
* @param options options
*/
create(data: any, options?: {}): string
create(data: {[key: string]: any}, options?: {}): string
/**
* parse xml string to json