import { $terrify } from '../../..';

interface ExtendedType {
	Property: "!";
}

interface Type extends ExtendedType {
	StringType: string;
}

const terrifiedType = $terrify<Type>();
