import { CustomExtension } from "../../common-types/custom-extensions"; export interface GetCustomExtensionsResponse { success: boolean; customExtensions: CustomExtension[]; timestamp: string; } export type GetCustomExtensions = () => Promise;