/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * MicrositePageConfigValues.schema.json * Generated on 2026-03-20T21:11:43.045Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ /** * The HTML page title */ export type Title = string /** * The HTML page description */ export type Description = string /** * The HTML template */ export type HTML = string export interface MicrositePageConfigValues { title: Title description?: Description html: HTML }