All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import type { Literal } from "mdast";
|
|
export * from "mdast";
|
|
export * from "mdast-util-math/complex-types";
|
|
export interface TOML extends Literal {
|
|
type: "toml";
|
|
}
|
|
declare module "mdast" {
|
|
interface FrontmatterContentMap {
|
|
toml: TOML;
|
|
}
|
|
}
|