TypeScript/tests/cases/compiler/omitTypeHelperModifiers01.ts

23 lines
278 B
TypeScript
Raw Normal View History

2019-05-01 22:57:47 +02:00
// @strict: true
type A = {
a: number;
b?: string;
readonly c: boolean;
d: unknown;
};
type B = Omit<A, 'a'>;
function f(x: B) {
const b = x.b;
x.b = "hello";
x.b = undefined;
const c = x.c;
x.c = true;
const d = x.d;
x.d = d;
}