OperationCode/front-end

View on GitHub
utils/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const objectKeys = <Type extends object>(value: Type) =>
  Object.keys(value) as Array<keyof Type>;