(
obj: T,
)
| 1129 | } |
| 1130 | |
| 1131 | static getObjectQueryKeys<T extends Dictionary, K extends string = Extract<keyof T, string>>( |
| 1132 | obj: T, |
| 1133 | ): (K | RawQueryFragmentSymbol)[] { |
| 1134 | return Reflect.ownKeys(obj).filter(key => { |
| 1135 | if (!Object.prototype.propertyIsEnumerable.call(obj, key)) { |
| 1136 | return false; |
| 1137 | } |
| 1138 | |
| 1139 | return typeof key === 'string' || Raw.isKnownFragmentSymbol(key); |
| 1140 | }) as (K | RawQueryFragmentSymbol)[]; |
| 1141 | } |
| 1142 | } |
no test coverage detected