Skip to content

Type Alias: AutoLaunchEnableResponse

Makaio Framework


Makaio Framework / contracts / AutoLaunchEnableResponse

AutoLaunchEnableResponse = z.infer<typeof PlatformSchemas["autoLaunch.enable"]["response"]>

Defined in: ../../../packages/contracts/src/platform/schemas.ts:73

Response payload for platform.autoLaunch.enable.

  • AutoLaunchEnableResponse
    • z.infer<(typeof PlatformSchemas)['autoLaunch.enable']['response']>
      • (typeof PlatformSchemas)['autoLaunch.enable']['response']
type AutoLaunchEnableResponse = {
enabled: boolean;
error?: string | undefined;
};