UNPKG

scriptable-testlab

Version:

A lightweight, efficient tool designed to manage and update scripts for Scriptable.

5 lines (4 loc) 97 B
/** * Generic constructor type */ export type Constructor<T = {}> = new (...args: any[]) => T;