Files
bsky-social-app/src/lib/type-assertions.ts
T
2023-05-04 16:45:35 -07:00

4 lines
88 B
TypeScript

export const getKeys = Object.keys as <T extends object>(
obj: T,
) => Array<keyof T>