Stone.js API
    Preparing search index...

    Options for the class and factory forms of defineStore.

    interface DefineStoreOptions {
        isFactory?: boolean;
        name?: string;
        perRequest?: boolean;
    }
    Index
    isFactory?: boolean

    Whether the module is a factory rather than a class.

    name?: string

    The name it is resolved under. Defaults to the class name for a class; required for a factory.

    perRequest?: boolean

    Same semantics as StoreDefinition.perRequest, same default.