astro-ghostcms/.pnpm-store/v3/files/db/b39f9d651aa00d0b4b854fedb7b...

12 lines
390 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
/**
* @typedef {import('../types.js').Options} Options
* @typedef {import('../types.js').State} State
*/
/**
* @param {State} state
* @returns {Exclude<Options['bullet'], null | undefined>}
*/
export function checkBullet(state: State): Exclude<Options['bullet'], null | undefined>;
export type Options = import('../types.js').Options;
export type State = import('../types.js').State;