Files
hoppscotch/packages/hoppscotch-common/src/platform/infra.ts
Akash K 2917d50c6a feat: copyable invite links (#4153)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
2024-06-28 18:48:10 +03:00

6 lines
132 B
TypeScript

import * as E from "fp-ts/Either"
export type InfraPlatformDef = {
getIsSMTPEnabled?: () => Promise<E.Either<string, boolean>>
}