mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
REVERTED: declared "name" parameter as optional
This commit is contained in:
parent
d8b2358f2a
commit
6f72c2699d
4
types/xml2js/index.d.ts
vendored
4
types/xml2js/index.d.ts
vendored
@ -35,7 +35,7 @@ export interface Options {
|
||||
async?: boolean;
|
||||
attrkey?: string;
|
||||
attrNameProcessors?: Array<(name: string) => any>;
|
||||
attrValueProcessors?: Array<(value: string, name?: string) => any>;
|
||||
attrValueProcessors?: Array<(value: string, name: string) => any>;
|
||||
charkey?: string;
|
||||
charsAsChildren?: boolean;
|
||||
childkey?: string;
|
||||
@ -53,7 +53,7 @@ export interface Options {
|
||||
tagNameProcessors?: Array<(name: string) => any>;
|
||||
trim?: boolean;
|
||||
validator?: Function;
|
||||
valueProcessors?: Array<(value: string, name?: string) => any>;
|
||||
valueProcessors?: Array<(value: string, name: string) => any>;
|
||||
xmlns?: boolean;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user