sketches
    Preparing search index...

    Variable aspectRatioConfigSchemaConst

    aspectRatioConfigSchema: TIntersect<
        [
            TObject<
                {
                    discriminator: TReadonly<
                        TEnum<[ASPECT_RATIO_CONFIG, PALETTE, PALETTE_COLOR]>,
                    >;
                },
            >,
            TObject<
                {
                    discriminator: TReadonly<TLiteral<ASPECT_RATIO_CONFIG>>;
                    heightRatio: TReadonly<TNumber>;
                    name: TOptional<TReadonly<TString>>;
                    widthRatio: TReadonly<TNumber>;
                },
            >,
        ],
    > = ...

    TypeBox schema for validating that an object implements the AspectRatioConfig type.