UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

6 lines (4 loc) 290 B
export type Descriptor = Object export type RawDecorator = (target: Object, key: string, descriptor: Descriptor) => Descriptor export type Decorator = (...any: any[]) => Descriptor | RawDecorator export default function makeDecorator(decorator: (...any: any[]) => RawDecorator): Decorator