Updated plugin APIs

This commit is contained in:
Gregory Schier
2024-08-01 07:01:57 -07:00
parent a643713139
commit 76dd4380ce
7 changed files with 42 additions and 15 deletions

View File

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