Start of plugin types refactor

This commit is contained in:
Gregory Schier
2024-07-31 14:56:55 -07:00
parent 1cb86bc1b7
commit a643713139
18 changed files with 331 additions and 154 deletions

View File

@@ -0,0 +1,2 @@
export type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>;
export type SingleOrArray<T> = T[] | T;