1 2 3 4 5 6 7 8 9 10 11 12
|
tests/cases/conformance/types/typeAliases/typeAliasesDoNotMerge.ts(1,13): error TS2395: Individual declarations in merged declaration 'A' must be all exported or all local.
tests/cases/conformance/types/typeAliases/typeAliasesDoNotMerge.ts(2,6): error TS2395: Individual declarations in merged declaration 'A' must be all exported or all local.
==== tests/cases/conformance/types/typeAliases/typeAliasesDoNotMerge.ts (2 errors) ====
export type A = {}
~
!!! error TS2395: Individual declarations in merged declaration 'A' must be all exported or all local.
type A = {}
~
!!! error TS2395: Individual declarations in merged declaration 'A' must be all exported or all local.
|