import {Type} from "./Utils"; export default interface Extendable { as(type: Type): C; asOptional(type: Type): C | null; }