cleanup types

This commit is contained in:
Jörg Breitbart
2019-01-27 17:28:15 +01:00
parent 90a41a113a
commit e67bef69f4
2 changed files with 5 additions and 5 deletions
+5 -1
View File
@@ -2,7 +2,11 @@
* Copyright (c) 2018 The xterm.js authors. All rights reserved.
* @license MIT
*/
import { TypedArray } from './Types';
export type TypedArray = Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray
| Int8Array | Int16Array | Int32Array
| Float32Array | Float64Array;
/**
* polyfill for TypedArray.fill
-4
View File
@@ -35,7 +35,3 @@ export interface ICircularList<T> extends IEventEmitter {
trimStart(count: number): void;
shiftElements(start: number, count: number, offset: number): void;
}
export type TypedArray = Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray
| Int8Array | Int16Array | Int32Array
| Float32Array | Float64Array;