Files
hoppscotch/packages/hoppscotch-common/src/platform/experiments.ts

11 lines
229 B
TypeScript

import * as E from "fp-ts/Either"
export type ExperimentsPlatformDef = {
aiExperiments?: {
enableAIExperiments: boolean
generateRequestName: (
requestInfo: string
) => Promise<E.Either<string, string>>
}
}