prettier/tests/typescript/conformance/classes/constructorDeclarations/constructorParameters/readonlyReadonly.ts

4 lines
92 B
TypeScript

class C {
readonly readonly x: number;
constructor(readonly readonly y: number) {}
}