import type { Tag } from '@markdoc/markdoc';

export function isTag(value?: any): value is Tag {
  return !!(value?.$$mdtype === 'Tag');
}
