UNPKG

streamdeck-typescript

Version:

This library will help you build elgato stream deck plugins in typescript

14 lines (11 loc) 226 B
/* * Author: XeroxDev <help@xeroxdev.de> * Copyright (c) 2021. * */ export class IllegalArgumentError extends Error { name = 'IllegalArgumentError'; constructor(message: string) { super(message); } }