Variable _InMemoryConst

_InMemory: {
    name: "InMemory";
    options: {
        name: {
            description: "The name of the store";
            required: false;
            type: "string";
        };
    };
    create(__namedParameters): StoreFS<InMemoryStore>;
    isAvailable(): boolean;
} = ...

A simple in-memory file system backed by an InMemoryStore. Files are not persisted across page loads.

Type declaration

  • Readonly name: "InMemory"
  • Readonly options: {
        name: {
            description: "The name of the store";
            required: false;
            type: "string";
        };
    }
    • Readonly name: {
          description: "The name of the store";
          required: false;
          type: "string";
      }
      • Readonly description: "The name of the store"
      • Readonly required: false
      • Readonly type: "string"
  • create:function
  • isAvailable:function