import {Type} from "./Type";

export default class CustomType implements Type {
    constructor(readonly name: string) {

    }
}