TypeScript/tests/cases/compiler/arrayBufferIsViewNarrowsType.ts

5 lines
154 B
TypeScript
Raw Normal View History

var obj: Object;
if (ArrayBuffer.isView(obj)) {
// isView should be a guard that narrows type to ArrayBufferView.
var ab: ArrayBufferView = obj;
}