UNPKG

139 BPlain TextView Raw
1export function typeIt<T>(json: Object): T {
2 const typed = JSON.parse(JSON.stringify(json)) as { default: T };
3 return typed.default;
4}