type Entry = string[] | Record; type Options = { entry?: Entry; }; type MaybePromise = T | Promise; export type TsupConfig = Options | Options[] | ((overrideOptions: Options) => MaybePromise); export {};