Skip to main content
Module

x/actionify/config/deps.ts>Token

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
type alias Token
Re-export
import { type Token } from "https://deno.land/x/actionify@0.3.0/config/deps.ts";

Markdown tokens that are generated during traversal of the document. check https://docs.rs/pulldown-cmark/0.8.0/pulldown_cmark/enum.Event.html for more detailed information.

definition:
| TokenCommon<"start" | "end"> & Tag
| TokenCommon<"text" | "code" | "html"> & { content: string; }
| TokenCommon<"footnoteReference"> & { label: string; }
| TokenCommon<"softBreak" | "hardBreak" | "rule">
| TokenCommon<"taskListMarker"> & { checked: boolean; }