#!/bin/bash

find ./src -type f -name "index.d.ts" -exec cat {} \; > tmp.d.ts
sed '/^\/\// d' tmp.d.ts > index.d.ts
