about summary refs log tree commit diff
path: root/src/lib/type-assertions.ts
blob: 6b5db5124714334ba225f15ae8510486cb994e18 (plain) (blame)
1
2
3
export const getKeys = Object.keys as <T extends object>(
  obj: T,
) => Array<keyof T>