chores: add back cursorsdottsx credits

This commit is contained in:
EvolutionX
2022-02-19 20:01:10 +05:30
committed by GitHub
parent 94141e7048
commit f4b6642b73

View File

@@ -16,7 +16,7 @@ export type Visibility = 'private' | 'public';
export type possibleOutput<T = string> = T | (MessagePayload & MessageOptions);
export type Nullable<T> = T | null;
export type execute = Sern.Module<unknown>['execute'];
// Thanks @cursorsdottsx
export type ParseType<T> = {
[K in keyof T]: T[K] extends unknown ? [k: K, args: T[K]] : never;
}[keyof T];