| 8 | type Metadata = Record<string, unknown> |
| 9 | |
| 10 | export interface ExtendedRecordManagerInterface extends RecordManagerInterface { |
| 11 | update(keys: Array<{ uid: string; docId: string }> | string[], updateOptions?: Record<string, any>): Promise<void> |
| 12 | } |
| 13 | |
| 14 | type StringOrDocFunc = string | ((doc: DocumentInterface) => string) |
| 15 |
no outgoing calls
no test coverage detected