()
| 126 | persist(): PropertyChain<Value, Omit<Options, 'persist'> & { persist: true }>; |
| 127 | persist(persist: false): PropertyChain<Value, Omit<Options, 'persist'> & { persist: false }>; |
| 128 | version(): PropertyChain<Value, Omit<Options, 'version'> & { version: true }>; |
| 129 | lazy(): PropertyChain<Value, Options>; |
| 130 | name<T extends string>(name: T): PropertyChain<Value, Omit<Options, 'fieldName'> & { fieldName: T }>; |
| 131 | fieldName<T extends string>(fieldName: T): PropertyChain<Value, Omit<Options, 'fieldName'> & { fieldName: T }>; |
no outgoing calls
no test coverage detected