Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | /**
* E0426: a type name that denotes nothing visible in the file that used it.
*/
interface IUndeclaredTypeError {
readonly code: string;
readonly typeName: string;
readonly line: number;
readonly column: number;
readonly message: string;
}
export default IUndeclaredTypeError;
|