UNPKG

scriptable-testlab

Version:

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

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