myst-cli
Version:
Command line tools for MyST
23 lines • 615 B
TypeScript
import type { VFileMessage } from 'vfile-message';
export type ExternalLinkResult = {
url: string;
ok?: boolean;
skipped?: boolean;
status?: number;
statusText?: string;
};
export type WarningKind = 'error' | 'warn' | 'info' | 'debug';
export type BuildWarning = {
message: string;
kind: WarningKind;
note?: string | null;
url?: string | null;
position?: VFileMessage['position'];
ruleId?: string | null;
};
export type ValidatedRawConfig = {
site?: Record<string, any>;
project?: Record<string, any>;
extend?: string[];
};
//# sourceMappingURL=types.d.ts.map