``` ERROR TS2329: Index signature is missing in type 'main/Buffer'. a[0] = 1; ~ ``` Minimal reproduce: ```ts class Buffer extends Uint8Array {} let a = new Buffer(10); a[0] = 1; ```