TypeScript/tests/cases/conformance/controlFlow/controlFlowWithTemplateLiterals.ts

11 lines
206 B
TypeScript

// @strictNullChecks: true
declare const envVar: string | undefined;
if (typeof envVar === `string`) {
envVar.slice(0)
}
declare const obj: {test: string} | {}
if (`test` in obj) {
obj.test.slice(0)
}