Interface RequireAnyOfScript

This script evaluates to true if any the sub-scripts evaluate to true. That is, if one or more evaluate to true.

If the list of sub-scripts is empty, this script evaluates to false.

interface RequireAnyOfScript {
    kind: RequireAnyOf;
    scripts: NativeScript[];
    type: Native;
}

Properties

Properties

The native script kind.

scripts: NativeScript[]

The list of sub-scripts.

type: Native

Script type.