Umi — API References - v1.3.0
    Preparing search index...

    Type Alias Option<T>

    Option: Some<T> | None

    An implementation of the Rust Option type in JavaScript. It can be one of the following:

    • Some: Meaning there is a value of type T.
    • None: Meaning there is no value.

    Type Parameters

    • T