Public typealias

Signature
type TLExternalContent = {
  point?: VecLike
  sources?: TLExternalContentSource[]
} & (
  | {
      embed: EmbedDefinition
      type: 'embed'
      url: string
    }
  | {
      files: File[]
      ignoreParent: boolean
      type: 'files'
    }
  | {
      text: string
      type: 'svg-text'
    }
  | {
      text: string
      type: 'text'
    }
  | {
      type: 'url'
      url: string
    }
)
References

VecLike, TLExternalContentSource, EmbedDefinition

Source

packages/editor/src/lib/editor/types/external-content.ts

TLExternalAssetContentTLExternalContentSource