@karmaniverous/rrstack
    Preparing search index...

    Interface RRStackOptions

    Constructor input and serialized output (round-trippable).

    • version is optional on input and ignored by the constructor.
    • toJson() always writes the current package version.
    interface RRStackOptions {
        rules?: RuleJson[];
        timeUnit?: UnixTimeUnit;
        timezone: string;
        version?: string;
    }
    Index

    Properties

    rules?: RuleJson[]

    Rule list. Defaults to empty.

    timeUnit?: UnixTimeUnit

    Time unit ('ms' | 's'). Defaults to 'ms'.

    timezone: string

    IANA timezone id (validated at runtime).

    version?: string

    Optional version string; ignored by the constructor.