Documentation
    Preparing search index...

    Type Alias ContainersAPI

    Actual Type: Struct
    Note: Stripped to generate better documentation.

    APIs to create Serializable containers: Dictionarys, Structs, and Lists.

    Replacements for their non-Serializable vanilla JavaScript equivalent: Maps, Objects, and Arrays.

    type ContainersAPI = {
        dictionary: DictionariesAPI;
        struct: StructsAPI;
        list: ListsAPI;
    }
    Index

    Properties

    dictionary: DictionariesAPI

    The API for Dictionarys.

    struct: StructsAPI

    The API for Structs.

    list: ListsAPI

    The API for Lists.