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