swc/crates/swc_ecma_codegen/tests/fixture/issues/6171/input.ts

7 lines
105 B
TypeScript

type ReadonlyDict = {
readonly [key: string]: string;
};
type Dict = {
[key: string]: string;
};