| 2 | import mongodb = require('mongodb'); |
| 3 | |
| 4 | interface SchemaTimestampsConfig { |
| 5 | createdAt?: boolean | string; |
| 6 | updatedAt?: boolean | string; |
| 7 | currentTime?: () => (NativeDate | number); |
| 8 | } |
| 9 | |
| 10 | type SchemaOptionsStaticsPropertyType<TStaticMethods, TModelType> = IfEquals< |
| 11 | TStaticMethods, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…