🎲
Simpl.DB
GitHubDonate
v2.11.0
v2.11.0
  • Introduction
  • Changelog
  • Getting Started
  • Troubleshooting
  • Documentation
    • Database
      • .add()
      • .clear()
      • .createCollection()
      • .delete()
      • .deleteCollection()
      • .fetch()
      • .get()
      • .getCollection()
      • .has()
      • .pull()
      • .push()
      • .rename()
      • .save()
      • .set()
      • .subtract()
      • .toJSON()
      • .update()
    • Collection
      • .create()
      • .createBulk()
      • .fetch()
      • .fetchOrCreate()
      • .get()
      • .getOrCreate()
      • .has()
      • .random()
      • .remove()
      • .reset()
      • .save()
      • .update()
  • Types/Interfaces
    • Data
    • JSONData
    • Modifiable<T>
Powered by GitBook
On this page

Was this helpful?

  1. Types/Interfaces

Data

Represents an object in which all the values' type is JSONData.

JSONData

TypeScript declaration:

interface Data {
  [key: string]: JSONData;
}
Previous.update()NextJSONData

Last updated 3 years ago

Was this helpful?