This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type BanProps<T extends string> = { [P in T]: never } & { | |
| [key: string]: any; | |
| }; | |
| interface Foo { | |
| x: string; | |
| y: number; | |
| } | |
| export type NotFoo = BanProps<keyof Foo>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { SelectedValue, useNamespaces } from 'xpath'; | |
| import { DOMParser } from 'xmldom'; | |
| import * as _ from 'lodash'; | |
| import { VError } from 'verror'; | |
| interface Parser { | |
| parseXml: (xml: string) => Document; | |
| /** | |
| * Type guard that returns true iff the selected value is a Node. |
OlderNewer