(key: string)
| 532 | } |
| 533 | |
| 534 | static splitPrimaryKeys<T extends object>(key: string): EntityKey<T>[] { |
| 535 | return key.split(this.PK_SEPARATOR) as EntityKey<T>[]; |
| 536 | } |
| 537 | |
| 538 | static getPrimaryKeyValues<T>( |
| 539 | entity: T, |
no outgoing calls
no test coverage detected