astro-ghostcms/.pnpm-store/v3/files/9d/bb3f1fad023b8ca4c28a63c930e...

19 lines
570 B
Plaintext

/**
* Serialize a doctype.
*
* @param {Doctype} _1
* Node to handle.
* @param {number | undefined} _2
* Index of `node` in `parent.
* @param {Parents | undefined} _3
* Parent of `node`.
* @param {State} state
* Info passed around about the current state.
* @returns {string}
* Serialized node.
*/
export function doctype(_1: Doctype, _2: number | undefined, _3: Parents | undefined, state: State): string;
export type Doctype = import('hast').Doctype;
export type Parents = import('hast').Parents;
export type State = import('../index.js').State;