@rikishi/watermelondb
Version:
Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast
27 lines (20 loc) • 671 B
TypeScript
declare module '@rikishi/watermelondb/Relation' {
import { ColumnName, Model, RecordId, TableName } from '@rikishi/watermelondb'
import { Observable } from 'rxjs'
import { $Call } from '@rikishi/watermelondb/utils/common'
export interface Options {
isImmutable: boolean
}
export default class Relation<T extends Model> {
public constructor(
model: Model,
relationTableName: TableName<T>,
columnName: ColumnName,
options: Options,
)
public id: $Call<(value: T | void) => RecordId | void>
public fetch(): Promise<T | null>
public set(record: T | null): void
public observe(): Observable<T | null>
}
}