Using clipboardData in TypeScript
You can bypass the expected typescript type using the ["property"] approach
var pastedData = e.originalEvent["clipboardData"].getData('text');
Use ClipboardEvent type (e.g.)
private onPaste(event: ClipboardEvent) {
const {clipboardData} = event;
const pastedText = clipboardData.getData('text');
}