mini-effect
    Preparing search index...

    Interface ToLowerCaseAction

    To lower case action interface.

    interface ToLowerCaseAction {
        "~run": (
            dataset: SuccessDataset<string>,
            config: Config<BaseIssue<unknown>>,
        ) => OutputDataset<string, BaseIssue<unknown>>;
        "~types"?: { input: string; issue: never; output: string };
        async: false;
        kind: "transformation";
        reference: () => ToLowerCaseAction;
        type: "to_lower_case";
    }

    Hierarchy (View Summary)

    Index

    Properties

    "~run": (
        dataset: SuccessDataset<string>,
        config: Config<BaseIssue<unknown>>,
    ) => OutputDataset<string, BaseIssue<unknown>>

    Transforms known input values.

    Type Declaration

    "~types"?: { input: string; issue: never; output: string }

    The input, output and issue type.

    async: false

    Whether it's async.

    kind: "transformation"

    The object kind.

    reference: () => ToLowerCaseAction

    The action reference.

    Type Declaration

    type: "to_lower_case"

    The action type.