TLStoreSchemaOptions

See source code
type TLStoreSchemaOptions =
  | {
      bindingUtils?: readonly TLAnyBindingUtilConstructor[];
      migrations?: readonly MigrationSequence[];
      records?: Record<string, CustomRecordInfo>;
      shapeUtils?: readonly TLAnyShapeUtilConstructor[];
    }
  | {
      schema?: StoreSchema<TLRecord, TLStoreProps>;
    };
Prev
TLStoreOptions
Next
TLStoreWithStatus