prettier/tests/typescript_class/optional.ts

5 lines
62 B
TypeScript

class X {
private foo? = undefined;
"a-prop"?: boolean;
}