packages start...
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
## xml
|
||||
|
||||
```ts
|
||||
interface XmlPackage {
|
||||
/**
|
||||
* create xml string
|
||||
*
|
||||
* @param data object or array
|
||||
* @param options options
|
||||
*/
|
||||
create(data: any, options?: {}): string
|
||||
|
||||
/**
|
||||
* parse xml string to json
|
||||
*
|
||||
* @param xml xml string
|
||||
* @param options options
|
||||
*/
|
||||
parse(xml: string, options?: {}): any
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user