tjbot-ce - v3.0.0
    Preparing search index...

    Variable sttBackendTypeSchemaConst

    sttBackendTypeSchema: {
        parse(
            value: unknown,
        ): "none" | "local" | "ibm-watson-stt" | "google-cloud-stt" | "azure-stt";
        safeParse(
            value: unknown,
        ):
            | { error: Error; success: false }
            | {
                data:
                    | "none"
                    | "local"
                    | "ibm-watson-stt"
                    | "google-cloud-stt"
                    | "azure-stt";
                success: true;
            };
    } = ...

    Type Declaration

    • parse: function
      • Parameters

        • value: unknown

        Returns "none" | "local" | "ibm-watson-stt" | "google-cloud-stt" | "azure-stt"

    • safeParse: function
      • Parameters

        • value: unknown

        Returns
            | { error: Error; success: false }
            | {
                data:
                    | "none"
                    | "local"
                    | "ibm-watson-stt"
                    | "google-cloud-stt"
                    | "azure-stt";
                success: true;
            }