mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
12
simple-xml/index.d.ts
vendored
Normal file
12
simple-xml/index.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// Type definitions for simple-xml 0.10
|
||||
// Project: https://github.com/AirAsiaExpedia/node-simple-xml
|
||||
// Definitions by: Vitaliy Isikov <https://github.com/notVitaliy>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
|
||||
declare namespace simple.xml {
|
||||
export function stringify(obj: {}): string;
|
||||
export function parse(data: string): {};
|
||||
}
|
||||
|
||||
export = simple.xml;
|
||||
0
simple-xml/simple-xml-tests.ts
Normal file
0
simple-xml/simple-xml-tests.ts
Normal file
20
simple-xml/tsconfig.json
Normal file
20
simple-xml/tsconfig.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"simple-xml-tests.ts"
|
||||
]
|
||||
}
|
||||
1
simple-xml/tslint.json
Normal file
1
simple-xml/tslint.json
Normal file
@@ -0,0 +1 @@
|
||||
{ "extends": "../tslint.json" }
|
||||
Reference in New Issue
Block a user