(formula: string | FormulaCallback<any>)
| 137 | ): PropertyChain<Value, Omit<Options, 'default'> & { default: any }>; |
| 138 | defaultRaw(defaultRaw: string): PropertyChain<Value, Options & { defaultRaw: string }>; |
| 139 | formula(formula: string | FormulaCallback<any>): PropertyChain<Value, Omit<Options, 'formula'> & { formula: any }>; |
| 140 | onUpdate(onUpdate: (entity: any, em: EntityManager) => MaybeArray<Value, Options>): PropertyChain<Value, Options>; |
| 141 | fieldNames(...fieldNames: string[]): PropertyChain<Value, Options>; |
| 142 | type(type: PropertyValueType): PropertyChain<Value, Options>; |
no outgoing calls
no test coverage detected