/* IMPORT */ import Abstract from './abstract'; import type {AbstractState} from '../types'; /* MAIN */ // This is just a node in the propotype chain useful for brand-checking compound nodes class Compound> extends Abstract {} /* EXPORT */ export default Compound;