UNPKG

@leanup/cli

Version:

This CLI brings along all required tools to serve, test and build multi framework SPAs

5 lines (4 loc) 139 B
export function typeIt<T>(json: Object): T { const typed = JSON.parse(JSON.stringify(json)) as { default: T }; return typed.default; }