@rikishi/watermelondb
Version:
Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast
15 lines (11 loc) • 348 B
TypeScript
declare module '@rikishi/watermelondb/Model/helper' {
import { Model } from '@rikishi/watermelondb'
export const hasUpdatedAt: (obj: Object) => boolean
export const createTimestampsFor: (
model: Model,
) => {
created_at: Date
updated_at: Date
}
export function addToRawSet(rawSet: string | void, value: string): string
}