1 2 3 4 5 6 7 8 9 10 11
declare function toSnakeCase(str: string): string; declare module 'to-snake-case' { export = toSnakeCase; } declare module '*.json' { const json: any; /* tslint:disable */ export default json; /* tslint:enable */ }