1 2 3 4 5 6 7
import { External } from './external'; export class Value extends External { constructor(name: string) { super('value', name); } }