Data source type, can be a string or BufferSource.
1.0.0
// String typeconst strData: DataSource = 'Hello, World!';// ArrayBuffer typeconst bufferData: DataSource = new ArrayBuffer(8);// Uint8Array typeconst u8aData: DataSource = new Uint8Array([1, 2, 3]); Copy
// String typeconst strData: DataSource = 'Hello, World!';// ArrayBuffer typeconst bufferData: DataSource = new ArrayBuffer(8);// Uint8Array typeconst u8aData: DataSource = new Uint8Array([1, 2, 3]);
Data source type, can be a string or BufferSource.