/* @flow */ const a = new Headers("'Content-Type': 'image/jpeg'"); // not correct const b = new Headers(['Content-Type', 'image/jpeg']); // not correct const c = new Headers({'Content-Type', 'image/jpeg'}); // correct const d = new Headers(c); // correct const e: Headers = new Headers(); // correct e.append('Content-Type', 'image/jpeg'); // correct e.append('Content-Type'); // not correct e.append({'Content-Type', 'image/jpeg'}); // not correct e.set('Content-Type', 'image/jpeg'); // correct e.set('Content-Type'); // not correct e.set({'Content-Type', 'image/jpeg'}); // not correct const f: Headers = e.append('Content-Type', 'image/jpeg'); // not correct const g: string = e.get('Content-Type'); // correct const h: number = e.get('Content-Type'); // not correct for (let v of e) { const [i, j]: [string, string] = v; // correct } for (let v of e.entries()) { const [i, j]: [string, string] = v; // correct } e.getAll('content-type').forEach((v: string) => {}); // correct