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