Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
import * as E from "fp-ts/Either"
|
|
|
|
export type InfraPlatformDef = {
|
|
getIsSMTPEnabled?: () => Promise<E.Either<string, boolean>>
|
|
}
|